[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55550] trunk/blender/intern/ghost/intern/ GHOST_SystemCocoa.mm: OS X Fullscreen: shortcut now is CTRL + Cmd + F.

Ton Roosendaal ton at blender.org
Sun Mar 24 15:56:03 CET 2013


Revision: 55550
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55550
Author:   ton
Date:     2013-03-24 14:56:03 +0000 (Sun, 24 Mar 2013)
Log Message:
-----------
OS X Fullscreen: shortcut now is CTRL + Cmd + F. Is more common, and it keeps
Cmd + F for searches.

Modified Paths:
--------------
    trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.mm

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.mm
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.mm	2013-03-24 13:43:40 UTC (rev 55549)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemCocoa.mm	2013-03-24 14:56:03 UTC (rev 55550)
@@ -664,7 +664,7 @@
 				
 #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"];




More information about the Bf-blender-cvs mailing list