Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2020-03-15 13:16:08 +0300
committerWilliam Reynish <billrey@me.com>2020-03-15 13:16:08 +0300
commit4031d8bcb7b5638b1fbdd85ea019e9819a6ef0af (patch)
treedd4d5fd12a6998bbd515280026fd4c1a3e3b3919
parenta210b8297f5afe6eaf2d001e57c1e8b7e8429c52 (diff)
UI: Fix capitalization in the macOS app menu
-rw-r--r--intern/ghost/intern/GHOST_SystemCocoa.mm2
1 files changed, 1 insertions, 1 deletions
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