mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
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]
This commit is contained in:
2
midend.c
2
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;
|
||||
|
Reference in New Issue
Block a user