diff options
Diffstat (limited to 'src/touchactions.cpp')
-rw-r--r-- | src/touchactions.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/touchactions.cpp b/src/touchactions.cpp index d45e4a7c3..574836b6d 100644 --- a/src/touchactions.cpp +++ b/src/touchactions.cpp @@ -21,7 +21,9 @@ #include "touchactions.h" #include "actionmanager.h" +#include "configuration.h" #include "game.h" +#include "inputmanager.h" #include "logger.h" #include "mouseinput.h" #include "touchmanager.h" @@ -37,7 +39,9 @@ int haldJoyPad = 50; impHandler0(showKeyboard) { - ActionManager::showKeyboard(tempEvent); + inputManager.executeAction(config.getIntValue("screenActionKeyboard")); + +// ActionManager::showKeyboard(tempEvent); } void setHalfJoyPad(int s) |