LibGUI: Make the buttons in GInputBox and GMessageBox slightly taller.

This commit is contained in:
Andreas Kling
2019-03-27 20:47:48 +01:00
parent d63528197b
commit d71820a382
2 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ void GMessageBox::build()
auto* button = new GButton(widget);
button->set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed);
button->set_preferred_size({ 100, 16 });
button->set_preferred_size({ 100, 20 });
button->set_caption("OK");
button->on_click = [this] (auto&) {
dbgprintf("GMessageBox: OK button clicked\n");