Disable Show Tab Bar menu item on macOS Sierrra
authorKevin Sawicki <kevinsawicki@gmail.com>
Thu, 29 Sep 2016 17:18:15 +0000 (10:18 -0700)
committerKevin Sawicki <kevinsawicki@gmail.com>
Thu, 29 Sep 2016 17:18:15 +0000 (10:18 -0700)
atom/browser/mac/atom_application_delegate.mm

index 4c6a938fba5950ffe7ec6b93f90537f95fbca750..74f45e2d2669353061eef3c675cfa2c8ebe13f06 100644 (file)
   // 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();
 }