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:
parent
d63528197b
commit
d71820a382
2 changed files with 4 additions and 4 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue