1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 21:35:07 +00:00

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

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