1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:05:07 +00:00

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