1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 12:15:07 +00:00

Settings: Improve default window size

Before, one icon was hidden slightly out of sight and there was a
scrollbar.
This commit is contained in:
Cameron Youell 2023-04-04 18:05:15 +10:00 committed by Andrew Kaster
parent ef5cca71dc
commit 71e665f0f9

View file

@ -90,7 +90,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
auto window = TRY(GUI::Window::try_create());
window->set_title("Settings");
window->resize(420, 210);
window->resize(420, 265);
auto file_menu = TRY(window->try_add_menu("&File"));
file_menu->add_action(GUI::CommonActions::make_quit_action([&](auto&) {