We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 82e0a21 + 5dc6a80 commit 0faba20Copy full SHA for 0faba20
docs/notes/bugfix-23208.md
@@ -0,0 +1 @@
1
+# Ensure new stacks always open in new windows on macOS
engine/src/mac-core.mm
@@ -355,6 +355,9 @@ - (void)applicationDidFinishLaunching: (NSNotification *)notification
355
selector:@selector(interfaceThemeChangedNotification:)
356
name:@"AppleInterfaceThemeChangedNotification" object:nil];
357
358
+ if ([NSWindow respondsToSelector:@selector(allowsAutomaticWindowTabbing)])
359
+ [NSWindow setAllowsAutomaticWindowTabbing: NO];
360
+
361
// We started up successfully, so queue the root runloop invocation
362
// message.
363
[self performSelector: @selector(runMainLoop) withObject: nil afterDelay: 0];
0 commit comments