diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-09-23 22:09:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-23 22:09:09 +0200 |
commit | ce384f885c36718066f547f15140a8815b58260f (patch) | |
tree | 96b314efcf9b38e6e66e50c379746c301eb2a2d4 /platform | |
parent | b8e56c5c15380399c682d437a76828f0180f56d0 (diff) | |
parent | ad5d0cca4dd468bd07406be08d31ee98e6477e85 (diff) |
Merge pull request #32250 from lawnjelly/android-keyboard2
Fix Android keyboard crash with left cursor
Diffstat (limited to 'platform')
-rw-r--r-- | platform/android/java/lib/src/org/godotengine/godot/input/GodotInputHandler.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/platform/android/java/lib/src/org/godotengine/godot/input/GodotInputHandler.java b/platform/android/java/lib/src/org/godotengine/godot/input/GodotInputHandler.java index a443a0ad90..2beca67922 100644 --- a/platform/android/java/lib/src/org/godotengine/godot/input/GodotInputHandler.java +++ b/platform/android/java/lib/src/org/godotengine/godot/input/GodotInputHandler.java @@ -96,7 +96,6 @@ public class GodotInputHandler implements InputDeviceListener { GodotLib.joybutton(device_id, button, false); } }); - return true; } } else { final int chr = event.getUnicodeChar(0); @@ -108,7 +107,7 @@ public class GodotInputHandler implements InputDeviceListener { }); }; - return false; + return true; } public boolean onKeyDown(final int keyCode, KeyEvent event) { @@ -142,7 +141,6 @@ public class GodotInputHandler implements InputDeviceListener { GodotLib.joybutton(device_id, button, true); } }); - return true; } } else { final int chr = event.getUnicodeChar(0); @@ -154,7 +152,7 @@ public class GodotInputHandler implements InputDeviceListener { }); }; - return false; + return true; } public boolean onGenericMotionEvent(MotionEvent event) { |