From 1ce34805f81be6b5c544a7f9aa03505d1b46ff26 Mon Sep 17 00:00:00 2001 From: Cubic Love <7754483+cubiclove@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:46:19 +0000 Subject: [PATCH] Settings: Improve default window size Before, one icon was hidden out of sight and there was a scrollbar. This small fix displays two neat rows of five icons. --- Userland/Applications/Settings/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/Settings/main.cpp b/Userland/Applications/Settings/main.cpp index fcc90ecd52..95bbac5c61 100644 --- a/Userland/Applications/Settings/main.cpp +++ b/Userland/Applications/Settings/main.cpp @@ -91,7 +91,7 @@ ErrorOr serenity_main(Main::Arguments arguments) auto window = TRY(GUI::Window::try_create()); window->set_title("Settings"); - window->resize(324, 265); + window->resize(420, 210); auto file_menu = TRY(window->try_add_menu("&File")); file_menu->add_action(GUI::CommonActions::make_quit_action([&](auto&) {