From 2abf2a2db1fc757e6f512ebda21f4e34017bbd4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=BCseyin=20ASLIT=C3=9CRK?= Date: Mon, 20 Apr 2020 16:00:30 +0300 Subject: [PATCH] LibGUI: MessageBox change height to icon cropping --- Libraries/LibGUI/MessageBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }