From d926223c6457da9375e700a5e227f2f9dafede67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anni=20Ryyn=C3=A4nen?= Date: Sun, 7 Jul 2024 11:33:56 +0300 Subject: [PATCH] Fix IME blocking controls --- platform/web/js/libs/library_godot_input.js | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/web/js/libs/library_godot_input.js b/platform/web/js/libs/library_godot_input.js index 7ea89d553fe..6e3b97023dc 100644 --- a/platform/web/js/libs/library_godot_input.js +++ b/platform/web/js/libs/library_godot_input.js @@ -112,6 +112,7 @@ const GodotIME = { ime.style.top = '0px'; ime.style.width = '100%'; ime.style.height = '40px'; + ime.style.pointerEvents = 'none'; ime.style.display = 'none'; ime.contentEditable = 'true';