diff options
author | Hüseyin ASLITÜRK <asliturk@hotmail.com> | 2020-04-20 16:00:30 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-21 12:03:35 +0200 |
commit | 2abf2a2db1fc757e6f512ebda21f4e34017bbd4c (patch) | |
tree | dcc8fb439a4f1311209e4a7c3b76b065b1881952 /Libraries/LibGUI | |
parent | 3339a77f6cf33952d28e0a39c841b4880dd9b094 (diff) | |
download | serenity-2abf2a2db1fc757e6f512ebda21f4e34017bbd4c.zip |
LibGUI: MessageBox change height to icon cropping
Diffstat (limited to 'Libraries/LibGUI')
-rw-r--r-- | Libraries/LibGUI/MessageBox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/MessageBox.cpp b/Libraries/LibGUI/MessageBox.cpp index fc9f2eeb78..335750f2f3 100644 --- a/Libraries/LibGUI/MessageBox.cpp +++ b/Libraries/LibGUI/MessageBox.cpp @@ -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); } |