summaryrefslogtreecommitdiff
path: root/LibGUI
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-02 20:48:37 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-02 20:48:37 +0200
commit401d3662c683112be6c41bb9b1928edb3a420386 (patch)
tree0357210ae694be01d4290454bca94de530689486 /LibGUI
parent2580d4b911860913d1c9fb093dc35f6ea61958e4 (diff)
downloadserenity-401d3662c683112be6c41bb9b1928edb3a420386.zip
GInputBox: Make the input text box a bit taller.
Diffstat (limited to 'LibGUI')
-rw-r--r--LibGUI/GInputBox.cpp2
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);