Răsfoiți Sursa

Fixed bug 4021 - Android, hard-coded Keycode value

Sylvain

There is an hard-coded keycode value in SDLActivity.java
Sam Lantinga 7 ani în urmă
părinte
comite
54340ab9de

+ 1 - 1
android-project/app/src/main/java/org/libsdl/app/SDLActivity.java

@@ -1519,7 +1519,7 @@ class SDLInputConnection extends BaseInputConnection {
          * as we do with physical keyboards, let's just use it to hide the keyboard.
          */
 
-        if (event.getKeyCode() == 66) {
+        if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER) {
             String imeHide = SDLActivity.nativeGetHint("SDL_RETURN_KEY_HIDES_IME");
             if ((imeHide != null) && imeHide.equals("1")) {
                 Context c = SDL.getContext();