diff options
author | Fredia Huya-Kouadio <fhuya@fb.com> | 2022-10-05 10:51:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 10:51:58 -0700 |
commit | 38113acf0d368eff1069c5daca57b5f5c4d9878e (patch) | |
tree | 61c610798f6bf7c0339c773631db6c6830ca7244 /platform | |
parent | 8afa178c6f663d1636723f9c53e2a3b15c5c42b8 (diff) | |
parent | 88df3e8d53a4494b6cbb2aa643b64cdfaca2c4bc (diff) |
Merge pull request #66941 from winterpixelgames/bugfix-android-null-input-event
Fix null in android keyboard handling.
Diffstat (limited to 'platform')
-rw-r--r-- | platform/android/java/lib/src/org/godotengine/godot/input/GodotTextInputWrapper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/java/lib/src/org/godotengine/godot/input/GodotTextInputWrapper.java b/platform/android/java/lib/src/org/godotengine/godot/input/GodotTextInputWrapper.java index c959b5f28c..01ad5ee415 100644 --- a/platform/android/java/lib/src/org/godotengine/godot/input/GodotTextInputWrapper.java +++ b/platform/android/java/lib/src/org/godotengine/godot/input/GodotTextInputWrapper.java @@ -122,7 +122,7 @@ public class GodotTextInputWrapper implements TextWatcher, OnEditorActionListene @Override public boolean onEditorAction(final TextView pTextView, final int pActionID, final KeyEvent pKeyEvent) { - if (mEdit == pTextView && isFullScreenEdit()) { + if (mEdit == pTextView && isFullScreenEdit() && pKeyEvent != null) { final String characters = pKeyEvent.getCharacters(); for (int i = 0; i < characters.length(); i++) { |