aboutsummaryrefslogtreecommitdiff
path: root/midend.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2005-05-31 12:41:18 +0000
committerSimon Tatham <anakin@pobox.com>2005-05-31 12:41:18 +0000
commit1d9ed93af6c202e5ec8a149c933d38b5ed98138c (patch)
treede96731b370c385904af6749500b7d3cf6d45986 /midend.c
parentb78667ecff6cbedcb6821c2fd71ab01c3ec23346 (diff)
downloadpuzzles-1d9ed93af6c202e5ec8a149c933d38b5ed98138c.zip
puzzles-1d9ed93af6c202e5ec8a149c933d38b5ed98138c.tar.gz
puzzles-1d9ed93af6c202e5ec8a149c933d38b5ed98138c.tar.bz2
puzzles-1d9ed93af6c202e5ec8a149c933d38b5ed98138c.tar.xz
Apparently a number of Windows programs like to use ^Y as a keyboard
shortcut for Redo. I wasn't doing anything else with it, so why not? [originally from svn r5880]
Diffstat (limited to 'midend.c')
-rw-r--r--midend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/midend.c b/midend.c
index 1def041..e71cd33 100644
--- a/midend.c
+++ b/midend.c
@@ -315,7 +315,7 @@ static int midend_really_process_key(midend_data *me, int x, int y, int button)
if (!midend_undo(me))
return 1;
} else if (button == 'r' || button == 'R' ||
- button == '\x12') {
+ button == '\x12' || button == '\x19') {
midend_stop_anim(me);
if (!midend_redo(me))
return 1;