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

Terminal: Tweak height of settings window

This commit is contained in:
Andreas Kling 2020-12-30 13:15:23 +01:00
parent db086ef9cc
commit 94e4aa94b5

View file

@ -180,7 +180,7 @@ static RefPtr<GUI::Window> create_settings_window(TerminalWidget& terminal)
auto window = GUI::Window::construct();
window->set_title("Terminal Settings");
window->set_resizable(false);
window->resize(200, 254);
window->resize(200, 210);
window->set_modal(true);
auto& settings = window->set_main_widget<GUI::Widget>();