LibGUI: Make GUI::Dialogs non-minimizable by default
This commit is contained in:
parent
005afa4c6e
commit
1abda05d38
Notes:
sideshowbarker
2024-07-19 01:13:34 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/1abda05d381
1 changed files with 1 additions and 0 deletions
|
@ -34,6 +34,7 @@ Dialog::Dialog(Window* parent_window)
|
|||
: Window(parent_window)
|
||||
{
|
||||
set_modal(true);
|
||||
set_minimizable(false);
|
||||
}
|
||||
|
||||
Dialog::~Dialog()
|
||||
|
|
Loading…
Add table
Reference in a new issue