diff options
author | Anni Ryynänen <anni@anniryynanen.com> | 2024-07-07 11:33:56 +0300 |
---|---|---|
committer | Anni Ryynänen <anni@anniryynanen.com> | 2024-07-07 13:06:18 +0300 |
commit | d926223c6457da9375e700a5e227f2f9dafede67 (patch) | |
tree | ba8e3a18c8ad42faf40635a26e5c33bbfd5d1a1f | |
parent | b97110cd307e4d78e20bfafe5de6c082194b2cd6 (diff) | |
download | redot-engine-d926223c6457da9375e700a5e227f2f9dafede67.tar.gz |
Fix IME blocking controls
-rw-r--r-- | platform/web/js/libs/library_godot_input.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/web/js/libs/library_godot_input.js b/platform/web/js/libs/library_godot_input.js index 7ea89d553f..6e3b97023d 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'; |