summaryrefslogtreecommitdiff
path: root/src/main-gtk2.c
diff options
context:
space:
mode:
authormiramor <danlev@norwoodlight.com>2012-03-29 18:13:50 -0400
committerBardur Arantsson <bardur@scientician.net>2012-03-31 19:48:18 +0200
commita6e2cf9cedf0b89991e776dad1db6871fc4c0d1f (patch)
tree6dd671ba4288a184b2175aa009a126a499428ad7 /src/main-gtk2.c
parented6048d41382de3ce879a9cf68d4347e25322f83 (diff)
GTK2 interface: allow running with shift + arrow keys
Diffstat (limited to 'src/main-gtk2.c')
-rw-r--r--src/main-gtk2.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/main-gtk2.c b/src/main-gtk2.c
index 20659f80..86404429 100644
--- a/src/main-gtk2.c
+++ b/src/main-gtk2.c
@@ -3826,31 +3826,6 @@ static gboolean keypress_event_handler(
return (TRUE);
}
- /* Hack - the cursor keys */
- case GDK_Up:
- {
- Term_keypress('8');
- return (TRUE);
- }
-
- case GDK_Down:
- {
- Term_keypress('2');
- return (TRUE);
- }
-
- case GDK_Left:
- {
- Term_keypress('4');
- return (TRUE);
- }
-
- case GDK_Right:
- {
- Term_keypress('6');
- return (TRUE);
- }
-
case GDK_Shift_L:
case GDK_Shift_R:
case GDK_Control_L: