From 31ad819413b0d3392250d4298ae461356979f2ce Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 31 May 2005 12:41:18 +0000 Subject: [PATCH] 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? git-svn-id: svn://svn.tartarus.org/sgt/puzzles@5880 cda61777-01e9-0310-a592-d414129be87e --- midend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0