From 401d3662c683112be6c41bb9b1928edb3a420386 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 2 Apr 2019 20:48:37 +0200 Subject: [PATCH] GInputBox: Make the input text box a bit taller. --- LibGUI/GInputBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);