VisualBuilder: Tweak margins in properties window.

This commit is contained in:
Andreas Kling 2019-05-11 02:35:55 +02:00
parent 1ab66e4d33
commit 1ff7f76172
Notes: sideshowbarker 2024-07-19 14:10:19 +09:00

View file

@ -12,6 +12,7 @@ VBPropertiesWindow::VBPropertiesWindow()
auto* widget = new GWidget;
widget->set_fill_with_background_color(true);
widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
widget->layout()->set_margins({ 2, 2, 2, 2 });
set_main_widget(widget);
m_table_view = new GTableView(widget);