1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

KeyboardSettings: Prevent minimising the window

This matches how the new MouseSettings application works.
This commit is contained in:
Jamie Mansfield 2021-07-26 11:44:05 +01:00 committed by Gunnar Beutner
parent 902559fc2d
commit 3d4abd7154

View file

@ -104,6 +104,7 @@ int main(int argc, char** argv)
window->set_title("Keyboard Settings");
window->resize(300, 70);
window->set_resizable(false);
window->set_minimizable(false);
window->set_icon(app_icon.bitmap_for_size(16));
auto& root_widget = window->set_main_widget<GUI::Widget>();