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]; }