summaryrefslogtreecommitdiff
path: root/src/gui/widgets/textfield.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/textfield.cpp')
-rw-r--r--src/gui/widgets/textfield.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/widgets/textfield.cpp b/src/gui/widgets/textfield.cpp
index 36315af34..bcbf20e1c 100644
--- a/src/gui/widgets/textfield.cpp
+++ b/src/gui/widgets/textfield.cpp
@@ -79,6 +79,10 @@
#include "gui/popups/popupmenu.h"
+#ifdef USE_SDL2
+#include "enums/input/keyvalue.h"
+#endif
+
#include "resources/image.h"
#include "resources/imagerect.h"
@@ -290,7 +294,7 @@ void TextField::keyPressed(KeyEvent &event)
logger->log("TextField::keyPressed %d", val);
#ifdef USE_SDL2
- if (val == Key::TEXTINPUT)
+ if (val == KeyValue::TEXTINPUT)
{
std::string str = event.getText();
mText.insert(mCaretPosition, str);