From d37ac05cdd954866721e0ae6c851204c164f16d1 Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Wed, 13 Oct 1999 00:49:47 +0000 Subject: [PATCH] Use Control and not Command key for key equivalents. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4999 72102866-910b-0410-8b05-ffd578937521 --- Source/NSApplication.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSApplication.m b/Source/NSApplication.m index 872e152a8..6a3998edb 100644 --- a/Source/NSApplication.m +++ b/Source/NSApplication.m @@ -619,7 +619,7 @@ NSApplication *NSApp = nil; case NSKeyDown: { NSDebugLog(@"send key down event\n"); - if ([theEvent modifierFlags] & NSCommandKeyMask) + if ([theEvent modifierFlags] & NSControlKeyMask) { NSArray *window_list = [self windows]; unsigned i;