From 2ce308427a91c97bf3be0eb794d2b7ada5c10a90 Mon Sep 17 00:00:00 2001 From: Josh Petrie Date: Sat, 16 Jul 2016 09:22:41 -0700 Subject: [PATCH] Correct the spelling of the "unified" tab bar style. --- src/MacVim/MMWindowController.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/MacVim/MMWindowController.m b/src/MacVim/MMWindowController.m index 02a103353f..99a062b3da 100644 --- a/src/MacVim/MMWindowController.m +++ b/src/MacVim/MMWindowController.m @@ -81,10 +81,10 @@ #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_10 -# define TABBAR_STYLE_UNIFINED @"Yosemite" +# define TABBAR_STYLE_UNIFIED @"Yosemite" # define TABBAR_STYLE_METAL @"Yosemite" #else -# define TABBAR_STYLE_UNIFINED @"Unified" +# define TABBAR_STYLE_UNIFIED @"Unified" # define TABBAR_STYLE_METAL @"Metal" #endif @@ -1181,7 +1181,7 @@ [[window animator] setAlphaValue:0]; } completionHandler:^{ [window setStyleMask:([window styleMask] | NSFullScreenWindowMask)]; - [[vimView tabBarControl] setStyleNamed:TABBAR_STYLE_UNIFINED]; + [[vimView tabBarControl] setStyleNamed:TABBAR_STYLE_UNIFIED]; [self updateTablineSeparator]; // Stay dark for some time to wait for things to sync, then do the full screen operation @@ -1317,7 +1317,7 @@ fullScreenEnabled = YES; [window setAlphaValue:1]; [window setStyleMask:([window styleMask] | NSFullScreenWindowMask)]; - [[vimView tabBarControl] setStyleNamed:TABBAR_STYLE_UNIFINED]; + [[vimView tabBarControl] setStyleNamed:TABBAR_STYLE_UNIFIED]; [self updateTablineSeparator]; [self maximizeWindow:fullScreenOptions]; }