From 6ecf90c6f87a9a49c4f14c823f7910fafed6701c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 11 Feb 2020 11:50:59 +0100 Subject: [PATCH] SystemMonitor: Tweak bottom margin of the process table --- Applications/SystemMonitor/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/SystemMonitor/main.cpp b/Applications/SystemMonitor/main.cpp index 406a77ab5b..651d16263b 100644 --- a/Applications/SystemMonitor/main.cpp +++ b/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()); - 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);