Browse Source

SystemMonitor: Tweak bottom margin of the process table

Andreas Kling 5 years ago
parent
commit
6ecf90c6f8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Applications/SystemMonitor/main.cpp

+ 1 - 1
Applications/SystemMonitor/main.cpp

@@ -138,7 +138,7 @@ int main(int argc, char** argv)
     tabwidget->add_widget("Network", network_stats_widget);
 
     process_table_container->set_layout(make<GUI::VerticalBoxLayout>());
-    process_table_container->layout()->set_margins({ 4, 0, 4, 4 });
+    process_table_container->layout()->set_margins({ 4, 0, 4, 0 });
     process_table_container->layout()->set_spacing(0);
 
     auto toolbar = GUI::ToolBar::construct(process_table_container);