diff options
Diffstat (limited to 'src/gui/widgets/textfield.cpp')
-rw-r--r-- | src/gui/widgets/textfield.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/textfield.cpp b/src/gui/widgets/textfield.cpp index d06df376..6da69a76 100644 --- a/src/gui/widgets/textfield.cpp +++ b/src/gui/widgets/textfield.cpp @@ -248,7 +248,7 @@ void TextField::keyPressed(gcn::KeyEvent &keyEvent) } } break; - case Key::DELETE: + case Key::DELETE_KEY: { unsigned sz = mText.size(); while (mCaretPosition < sz) |