diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-23 19:12:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-24 21:08:16 +0300 |
commit | 270d6d2753473955a2b691a934eb2e550d13ebc3 (patch) | |
tree | 2ba55bab0c21b1775bfcd85e80d24cbfbbe652e9 /src/gui/gui.cpp | |
parent | c7f5d0a71d7318ccc4c3f28ab90d688a1a0868b3 (diff) | |
download | plus-270d6d2753473955a2b691a934eb2e550d13ebc3.tar.gz plus-270d6d2753473955a2b691a934eb2e550d13ebc3.tar.bz2 plus-270d6d2753473955a2b691a934eb2e550d13ebc3.tar.xz plus-270d6d2753473955a2b691a934eb2e550d13ebc3.zip |
fix gui text input in SDL2.
copy/paste broken for SDL2.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index ba7a0de06..8068ffad7 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -376,6 +376,9 @@ bool Gui::handleKeyInput2() keyInput.getType(), keyInput.isNumericPad(), keyInput.getActionId(), keyInput.getKey()); + if (!keyInput.getText().empty()) + keyEventToGlobalKeyListeners.setText(keyInput.getText()); + distributeKeyEventToGlobalKeyListeners( keyEventToGlobalKeyListeners); @@ -398,6 +401,8 @@ bool Gui::handleKeyInput2() mShiftPressed, mControlPressed, mAltPressed, mMetaPressed, keyInput.getType(), keyInput.isNumericPad(), keyInput.getActionId(), keyInput.getKey()); + if (!keyInput.getText().empty()) + keyEvent.setText(keyInput.getText()); if (!mFocusHandler->getFocused()->isFocusable()) mFocusHandler->focusNone(); |