SystemMonitor: Tweak bottom margin of the process table

This commit is contained in:
Andreas Kling 2020-02-11 11:50:59 +01:00
parent 8a605922bb
commit 6ecf90c6f8
Notes: sideshowbarker 2024-07-19 09:26:34 +09:00

View file

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