diff options
author | Andreas Kling <kling@serenityos.org> | 2020-04-23 17:54:29 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-23 17:54:59 +0200 |
commit | fa0bab843a46365eeaa950a589d17d790896f55d (patch) | |
tree | 946af08499e54a3386ddc3f4835259440dae51f6 /Applications/SystemMonitor/main.cpp | |
parent | 8260cbf7bdeb62d0b575a6b70bd572509385c149 (diff) | |
download | serenity-fa0bab843a46365eeaa950a589d17d790896f55d.zip |
SystemMonitor: Shrink margins of main layout
Diffstat (limited to 'Applications/SystemMonitor/main.cpp')
-rw-r--r-- | Applications/SystemMonitor/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<GUI::Widget>(); keeper.set_layout<GUI::VerticalBoxLayout>(); 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<GUI::TabWidget>(); |