From 4cf291798aa4dca4b9662c6400ec753444206c2e Mon Sep 17 00:00:00 2001 From: Leon Styhre <leon@leonstyhre.com> Date: Sat, 13 Nov 2021 15:31:44 +0100 Subject: [PATCH] Fixed a grid layout issue for the virtual keyboard. --- es-core/src/guis/GuiTextEditKeyboardPopup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/guis/GuiTextEditKeyboardPopup.cpp b/es-core/src/guis/GuiTextEditKeyboardPopup.cpp index 8a1c270f3..9ab41058b 100644 --- a/es-core/src/guis/GuiTextEditKeyboardPopup.cpp +++ b/es-core/src/guis/GuiTextEditKeyboardPopup.cpp @@ -237,7 +237,7 @@ GuiTextEditKeyboardPopup::GuiTextEditKeyboardPopup( } } - mGrid.setEntry(mKeyboardGrid, glm::ivec2{0, yPos + 1}, true, true, glm::ivec2{2, 4}); + mGrid.setEntry(mKeyboardGrid, glm::ivec2{0, yPos + 1}, true, true, glm::ivec2{1, 4}); float textHeight = mText->getFont()->getHeight(); // If the multiLine option has been set, then include three lines of text on screen.