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

GInputBox: Make the input text box a bit taller.

This commit is contained in:
Andreas Kling 2019-04-02 20:48:37 +02:00
parent 2580d4b911
commit 401d3662c6

View file

@ -38,7 +38,7 @@ void GInputBox::build()
m_text_editor = new GTextEditor(GTextEditor::SingleLine, widget);
m_text_editor->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
m_text_editor->set_preferred_size({ 0, 16 });
m_text_editor->set_preferred_size({ 0, 19 });
auto* button_container_outer = new GWidget(widget);
button_container_outer->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);