exp/textinput: bug fix: compilation failure for GOOS=js

Updates #3041
This commit is contained in:
Hajime Hoshi 2024-07-15 01:49:15 +09:00
parent 7b1965e28f
commit d30ebca80f

View File

@ -79,7 +79,7 @@ func (t *textInput) init() {
if e.Get("code").String() == "Tab" {
e.Call("preventDefault")
}
if ui.IsVirtualKeyboard() && (e.Get("code").String() == "Enter" || e.Get("key").String() == "Enter") {
if isVirtualKeyboard() && (e.Get("code").String() == "Enter" || e.Get("key").String() == "Enter") {
// Ignore Enter key to avoid ebiten.IsKeyPressed(ebiten.KeyEnter) unexpectedly becomes true.
e.Call("preventDefault")
ui.Get().UpdateInputFromEvent(e)