From 8d0747554cd70041f7e3a337d08b475a4b1dcb50 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Wed, 20 Sep 2023 19:17:32 +0800 Subject: [PATCH] Disable window tabbing in the OSX app --- apple/Sources/AppDelegate.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/apple/Sources/AppDelegate.swift b/apple/Sources/AppDelegate.swift index a7c5d83c1..6d5298db9 100644 --- a/apple/Sources/AppDelegate.swift +++ b/apple/Sources/AppDelegate.swift @@ -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()