diff options
Diffstat (limited to 'Libraries/LibGUI/Splitter.cpp')
-rw-r--r-- | Libraries/LibGUI/Splitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/Splitter.cpp b/Libraries/LibGUI/Splitter.cpp index 4f2c8debfe..c532ce926b 100644 --- a/Libraries/LibGUI/Splitter.cpp +++ b/Libraries/LibGUI/Splitter.cpp @@ -54,7 +54,7 @@ void Splitter::paint_event(PaintEvent& event) void Splitter::resize_event(ResizeEvent& event) { - Frame::resize_event(event); + Widget::resize_event(event); m_grabbable_rect = {}; } |