Disable Show Tab Bar menu item on macOS Sierrra

This commit is contained in:
Kevin Sawicki
2016-09-29 10:18:15 -07:00
parent b3b9994ce8
commit 24b9313958

View File

@@ -21,6 +21,11 @@
// Don't add the "Enter Full Screen" menu item automatically.
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"NSFullScreenMenuItemEverywhere"];
// Don't add the "Show Tab Bar" menu item.
if ([NSWindow respondsToSelector:@selector(allowsAutomaticWindowTabbing)]) {
NSWindow.allowsAutomaticWindowTabbing = NO;
}
atom::Browser::Get()->WillFinishLaunching();
}