소스 검색

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