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

LibGUI: Make GUI::Dialogs non-minimizable by default

This commit is contained in:
Andreas Kling 2020-11-28 10:22:41 +01:00
parent 005afa4c6e
commit 1abda05d38

View file

@ -34,6 +34,7 @@ Dialog::Dialog(Window* parent_window)
: Window(parent_window)
{
set_modal(true);
set_minimizable(false);
}
Dialog::~Dialog()