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:
Simon Tatham
2005-05-31 12:41:18 +00:00
parent b78667ecff
commit 1d9ed93af6

View File

@ -315,7 +315,7 @@ static int midend_really_process_key(midend_data *me, int x, int y, int button)
if (!midend_undo(me)) if (!midend_undo(me))
return 1; return 1;
} else if (button == 'r' || button == 'R' || } else if (button == 'r' || button == 'R' ||
button == '\x12') { button == '\x12' || button == '\x19') {
midend_stop_anim(me); midend_stop_anim(me);
if (!midend_redo(me)) if (!midend_redo(me))
return 1; return 1;