Browse Source

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.
Linus Groh 4 years ago
parent
commit
45d4bf156d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Applications/SystemMonitor/main.cpp

+ 1 - 1
Userland/Applications/SystemMonitor/main.cpp

@@ -174,7 +174,7 @@ int main(int argc, char** argv)
 
 
     auto window = GUI::Window::construct();
     auto window = GUI::Window::construct();
     window->set_title("System Monitor");
     window->set_title("System Monitor");
-    window->resize(680, 400);
+    window->resize(680, 430);
 
 
     auto& main_widget = window->set_main_widget<GUI::Widget>();
     auto& main_widget = window->set_main_widget<GUI::Widget>();
     main_widget.set_layout<GUI::VerticalBoxLayout>();
     main_widget.set_layout<GUI::VerticalBoxLayout>();