From 45d4bf156d9a91d0516a9cf8badf7b7cbd5fcc7b Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 5 Apr 2021 11:19:20 +0200 Subject: [PATCH] SystemMonitor: Tweak default window size This ensures that all information on the 'Graphs' tab is visible by default without having to resize the window. Fixes #6135. --- Userland/Applications/SystemMonitor/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index 6dcc253580..8fd28ec7d6 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -174,7 +174,7 @@ int main(int argc, char** argv) auto window = GUI::Window::construct(); window->set_title("System Monitor"); - window->resize(680, 400); + window->resize(680, 430); auto& main_widget = window->set_main_widget(); main_widget.set_layout();