aboutsummaryrefslogtreecommitdiff
path: root/osx.m
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2005-05-17 17:20:08 +0000
committerSimon Tatham <anakin@pobox.com>2005-05-17 17:20:08 +0000
commit0e197efe44db0371dcba395be41fe772dac02b01 (patch)
tree48e02cfeded93043d0d64f959ba1b8fe4a548c5c /osx.m
parentf3a27738025ce7d2bce24548f13133ff499ff5f6 (diff)
downloadpuzzles-0e197efe44db0371dcba395be41fe772dac02b01.zip
puzzles-0e197efe44db0371dcba395be41fe772dac02b01.tar.gz
puzzles-0e197efe44db0371dcba395be41fe772dac02b01.tar.bz2
puzzles-0e197efe44db0371dcba395be41fe772dac02b01.tar.xz
After much thought, I've decided that `Restart' on r is not a
particularly useful keypress, particularly given how easy it is to confuse it with `Redo'. So both r and ^R are now Redo, and Restart is relegated to being a menu-only option. [originally from svn r5796]
Diffstat (limited to 'osx.m')
-rw-r--r--osx.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/osx.m b/osx.m
index 337748d..dfed94c 100644
--- a/osx.m
+++ b/osx.m
@@ -651,7 +651,7 @@ struct frontend {
}
- (void)restartGame:(id)sender
{
- [self processButton:'r' x:-1 y:-1];
+ midend_restart_game(me);
}
- (void)undoMove:(id)sender
{