OS X Fullscreen: shortcut now is CTRL + Cmd + F. Is more common, and it keeps

Cmd + F for searches.
This commit is contained in:
Ton Roosendaal 2013-03-24 14:56:03 +00:00
parent 1165236f69
commit 70702f78b5

@ -664,7 +664,7 @@ GHOST_TSuccess GHOST_SystemCocoa::init()
#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 // make it build with 10.6 deployment target, but as it is not available in 10.6, it will get weaklinked
menuItem = [windowMenu addItemWithTitle:@"Enter Full Screen" action:@selector(toggleFullScreen:) keyEquivalent:@"f" ];
[menuItem setKeyEquivalentModifierMask:NSCommandKeyMask];
[menuItem setKeyEquivalentModifierMask:NSControlKeyMask | NSCommandKeyMask];
#endif
menuItem = [windowMenu addItemWithTitle:@"Close" action:@selector(performClose:) keyEquivalent:@"w"];