Disable window tabbing in the OSX app

This commit is contained in:
Jackson Harper
2023-09-20 19:17:32 +08:00
parent 4993ef24c8
commit 8d0747554c

View File

@ -16,6 +16,7 @@ private let logger = Logger(subsystem: "app.omnivore", category: "app-delegate")
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_: Notification) {
NSApplication.shared.delegate = self
NSWindow.allowsAutomaticWindowTabbing = false
#if DEBUG
if CommandLine.arguments.contains("--uitesting") {
configureForUITests()