LibGUI: Implement content_margins for GroupBox

This commit is contained in:
FrHun 2021-09-28 15:42:25 +02:00 committed by Andreas Kling
commit 4955769ab8
Notes: sideshowbarker 2024-07-18 01:31:41 +09:00
2 changed files with 11 additions and 0 deletions

View file

@ -17,6 +17,7 @@ public:
String title() const { return m_title; }
void set_title(const StringView&);
virtual Margins content_margins() const override;
protected:
explicit GroupBox(const StringView& title = {});