From fa0bab843a46365eeaa950a589d17d790896f55d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 23 Apr 2020 17:54:29 +0200 Subject: [PATCH] SystemMonitor: Shrink margins of main layout --- 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 ca2a27afce..dec322a6da 100644 --- a/Applications/SystemMonitor/main.cpp +++ b/Applications/SystemMonitor/main.cpp @@ -118,7 +118,7 @@ int main(int argc, char** argv) auto& keeper = window->set_main_widget(); keeper.set_layout(); keeper.set_fill_with_background_color(true); - keeper.layout()->set_margins({ 4, 4, 4, 4 }); + keeper.layout()->set_margins({ 2, 2, 2, 2 }); auto& tabwidget = keeper.add();