chiark
/
gitweb
/
~ian
/
sgt-puzzles.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b78667e
)
Apparently a number of Windows programs like to use ^Y as a keyboard
author
Simon Tatham
<anakin@pobox.com>
Tue, 31 May 2005 12:41:18 +0000
(12:41 +0000)
committer
Simon Tatham
<anakin@pobox.com>
Tue, 31 May 2005 12:41:18 +0000
(12:41 +0000)
shortcut for Redo. I wasn't doing anything else with it, so why not?
[originally from svn r5880]
midend.c
patch
|
blob
|
history
diff --git
a/midend.c
b/midend.c
index 1def04167a7b54b624a222c290095ee7eb908730..e71cd33f5ddc9d65b9d1977c038fd2cd6c6da36b 100644
(file)
--- 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;