From 15155aecaf88c72fea1fff3cd47f14ef19272166 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Thu, 22 Dec 2022 19:40:49 +0530 Subject: [PATCH] textinput --- src/gui/GuiTextInput.hx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/GuiTextInput.hx b/src/gui/GuiTextInput.hx index 6fbec019..437fbac8 100644 --- a/src/gui/GuiTextInput.hx +++ b/src/gui/GuiTextInput.hx @@ -73,5 +73,8 @@ class GuiTextInput extends GuiControl { // js.Browser.document.documentElement.requestFullscreen(); } #end + #if android + text.focus(); + #end } }