diff options
Diffstat (limited to 'src/guichan/widgets/radiobutton.cpp')
-rw-r--r-- | src/guichan/widgets/radiobutton.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/guichan/widgets/radiobutton.cpp b/src/guichan/widgets/radiobutton.cpp index 7d0391cbe..7811ea558 100644 --- a/src/guichan/widgets/radiobutton.cpp +++ b/src/guichan/widgets/radiobutton.cpp @@ -128,17 +128,8 @@ namespace gcn mCaption = caption; } - void RadioButton::keyPressed(KeyEvent& keyEvent) + void RadioButton::keyPressed(KeyEvent& keyEvent A_UNUSED) { - Key key = keyEvent.getKey(); - - if (key.getValue() == Key::ENTER || - key.getValue() == Key::SPACE) - { - setSelected(true); - distributeActionEvent(); - keyEvent.consume(); - } } void RadioButton::mouseClicked(MouseEvent& mouseEvent) |