1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:57:44 +00:00

PixelPaint: Call correct base class in LayerListWidget::resize_event()

This commit is contained in:
Andreas Kling 2021-07-09 21:06:52 +02:00
parent bce1d633ca
commit 0ef3cf7b0f

View file

@ -53,7 +53,7 @@ void LayerListWidget::rebuild_gadgets()
void LayerListWidget::resize_event(GUI::ResizeEvent& event)
{
Widget::resize_event(event);
AbstractScrollableWidget::resize_event(event);
relayout_gadgets();
}