1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 12:15:07 +00:00

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

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);