浏览代码

VisualBuilder: Tweak margins in properties window.

Andreas Kling 6 年之前
父节点
当前提交
1ff7f76172
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      DevTools/VisualBuilder/VBPropertiesWindow.cpp

+ 1 - 0
DevTools/VisualBuilder/VBPropertiesWindow.cpp

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