diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-02 20:48:37 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-02 20:48:37 +0200 |
commit | 401d3662c683112be6c41bb9b1928edb3a420386 (patch) | |
tree | 0357210ae694be01d4290454bca94de530689486 /LibGUI | |
parent | 2580d4b911860913d1c9fb093dc35f6ea61958e4 (diff) | |
download | serenity-401d3662c683112be6c41bb9b1928edb3a420386.zip |
GInputBox: Make the input text box a bit taller.
Diffstat (limited to 'LibGUI')
-rw-r--r-- | LibGUI/GInputBox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GInputBox.cpp b/LibGUI/GInputBox.cpp index eb38e5c81e..80dd0e3256 100644 --- a/LibGUI/GInputBox.cpp +++ b/LibGUI/GInputBox.cpp @@ -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); |