Browse Source

Disable Show Tab Bar menu item on macOS Sierrra

Kevin Sawicki 8 years ago
parent
commit
24b9313958
1 changed files with 5 additions and 0 deletions
  1. 5 0
      atom/browser/mac/atom_application_delegate.mm

+ 5 - 0
atom/browser/mac/atom_application_delegate.mm

@@ -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();
 }