diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/SeparatorWidget.h')
-rw-r--r-- | Userland/Libraries/LibGUI/SeparatorWidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGUI/SeparatorWidget.h b/Userland/Libraries/LibGUI/SeparatorWidget.h index 40fc9f62c5..64393d190b 100644 --- a/Userland/Libraries/LibGUI/SeparatorWidget.h +++ b/Userland/Libraries/LibGUI/SeparatorWidget.h @@ -22,6 +22,7 @@ protected: private: virtual void paint_event(PaintEvent&) override; + virtual Optional<UISize> calculated_preferred_size() const override; const Gfx::Orientation m_orientation; }; |