[Bf-blender-cvs] [4031d8bcb7b] master: UI: Fix capitalization in the macOS app menu

William Reynish noreply at git.blender.org
Sun Mar 15 11:16:18 CET 2020


Commit: 4031d8bcb7b5638b1fbdd85ea019e9819a6ef0af
Author: William Reynish
Date:   Sun Mar 15 11:16:08 2020 +0100
Branches: master
https://developer.blender.org/rB4031d8bcb7b5638b1fbdd85ea019e9819a6ef0af

UI: Fix capitalization in the macOS app menu

===================================================================

M	intern/ghost/intern/GHOST_SystemCocoa.mm

===================================================================

diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm b/intern/ghost/intern/GHOST_SystemCocoa.mm
index a7ec137a0a4..9d899a4fc2f 100644
--- a/intern/ghost/intern/GHOST_SystemCocoa.mm
+++ b/intern/ghost/intern/GHOST_SystemCocoa.mm
@@ -580,7 +580,7 @@ GHOST_TSuccess GHOST_SystemCocoa::init()
                              keyEquivalent:@"h"];
       [menuItem setKeyEquivalentModifierMask:NSEventModifierFlagCommand];
 
-      menuItem = [appMenu addItemWithTitle:@"Hide others"
+      menuItem = [appMenu addItemWithTitle:@"Hide Others"
                                     action:@selector(hideOtherApplications:)
                              keyEquivalent:@"h"];
       [menuItem



More information about the Bf-blender-cvs mailing list