mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:47:44 +00:00
KeyboardSettings: Prevent minimising the window
This matches how the new MouseSettings application works.
This commit is contained in:
parent
902559fc2d
commit
3d4abd7154
1 changed files with 1 additions and 0 deletions
|
@ -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>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue