diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-05-31 12:41:18 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-05-31 12:41:18 +0000 |
| commit | 1d9ed93af6c202e5ec8a149c933d38b5ed98138c (patch) | |
| tree | de96731b370c385904af6749500b7d3cf6d45986 /midend.c | |
| parent | b78667ecff6cbedcb6821c2fd71ab01c3ec23346 (diff) | |
| download | puzzles-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |