diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-07 21:58:43 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-07 21:58:43 +0200 |
commit | 39d9ff21b86b5c3735f0cd17b5df18eb91100c75 (patch) | |
tree | e667001a9997479c1217113881a216261b8d227f | |
parent | 73b6544f1ba9e298f38128efa97405982d6dfaae (diff) | |
parent | d926223c6457da9375e700a5e227f2f9dafede67 (diff) | |
download | redot-engine-39d9ff21b86b5c3735f0cd17b5df18eb91100c75.tar.gz |
Merge pull request #94024 from anniryynanen/ime-block
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'; |