1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 03:44:58 +00:00

LibGUI: MessageBox change height to icon cropping

This commit is contained in:
Hüseyin ASLITÜRK 2020-04-20 16:00:30 +03:00 committed by Andreas Kling
parent 3339a77f6c
commit 2abf2a2db1

View file

@ -147,7 +147,7 @@ void MessageBox::build()
if (should_include_cancel_button())
add_button("Cancel", Dialog::ExecCancel);
set_rect(x(), y(), text_width + icon_width + 80, 100);
set_rect(x(), y(), text_width + icon_width + 80, 115);
set_resizable(false);
}