Fixed bug 4021 - Android, hard-coded Keycode value
Sylvain There is an hard-coded keycode value in SDLActivity.java
This commit is contained in:
parent
3fdcaa213e
commit
2ad41155fb
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue