diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-30 23:24:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-30 23:24:09 +0300 |
commit | 021e567ba44650b0ab63e7f571dc0d622edbcc6d (patch) | |
tree | 32845a9e5b32f799bc8bbe5c25a1cd83892b104b /src/touchactions.cpp | |
parent | bb0b49f4d70f8268550068f972549ffa33e9a75b (diff) | |
download | plus-021e567ba44650b0ab63e7f571dc0d622edbcc6d.tar.gz plus-021e567ba44650b0ab63e7f571dc0d622edbcc6d.tar.bz2 plus-021e567ba44650b0ab63e7f571dc0d622edbcc6d.tar.xz plus-021e567ba44650b0ab63e7f571dc0d622edbcc6d.zip |
Add action to show onscreen keyboard.
Diffstat (limited to 'src/touchactions.cpp')
-rw-r--r-- | src/touchactions.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/touchactions.cpp b/src/touchactions.cpp index 2a6fbacaa..d45e4a7c3 100644 --- a/src/touchactions.cpp +++ b/src/touchactions.cpp @@ -26,10 +26,6 @@ #include "mouseinput.h" #include "touchmanager.h" -#ifdef ANDROID -#include <SDL_screenkeyboard.h> -#endif - #include "debug.h" InputEvent tempEvent(0, 0); @@ -41,9 +37,7 @@ int haldJoyPad = 50; impHandler0(showKeyboard) { -#ifdef ANDROID - SDL_ANDROID_ToggleScreenKeyboardTextInput(nullptr); -#endif + ActionManager::showKeyboard(tempEvent); } void setHalfJoyPad(int s) |