Переглянути джерело

LibGUI: MessageBox change height to icon cropping

Hüseyin ASLITÜRK 5 роки тому
батько
коміт
2abf2a2db1
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      Libraries/LibGUI/MessageBox.cpp

+ 1 - 1
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);
 }