Fixed bug 4021 - Android, hard-coded Keycode value

Sylvain

There is an hard-coded keycode value in SDLActivity.java
This commit is contained in:
Sam Lantinga 2018-02-07 15:10:50 -08:00
parent b401cfd915
commit 54340ab9de
1 changed files with 1 additions and 1 deletions

View File

@ -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();