summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI
diff options
context:
space:
mode:
authorHüseyin ASLITÜRK <asliturk@hotmail.com>2020-04-20 16:00:30 +0300
committerAndreas Kling <kling@serenityos.org>2020-04-21 12:03:35 +0200
commit2abf2a2db1fc757e6f512ebda21f4e34017bbd4c (patch)
treedcc8fb439a4f1311209e4a7c3b76b065b1881952 /Libraries/LibGUI
parent3339a77f6cf33952d28e0a39c841b4880dd9b094 (diff)
downloadserenity-2abf2a2db1fc757e6f512ebda21f4e34017bbd4c.zip
LibGUI: MessageBox change height to icon cropping
Diffstat (limited to 'Libraries/LibGUI')
-rw-r--r--Libraries/LibGUI/MessageBox.cpp2
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);
}