Merge pull request #2786 from omnivore-app/fix/macos-disable-tabbing

Disable window tabbing in the OSX app
This commit is contained in:
Jackson Harper 2023-09-20 19:29:04 +08:00 committed by GitHub
commit 0a50215abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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()