Files
Memola/Memola/App/AppDelegate.swift
2024-07-12 22:02:28 +07:00

20 lines
438 B
Swift

//
// AppDelegate.swift
// Memola
//
// Created by Dscyre Scotti on 7/12/24.
//
import SwiftUI
class AppDelegate: NSObject, ObservableObject { }
#if os(macOS)
extension AppDelegate: NSApplicationDelegate {
func applicationDidFinishLaunching(_ notification: Notification) {
NSWindow.allowsAutomaticWindowTabbing = false
UserDefaults.standard.register(defaults: ["NSQuitAlwaysKeepsWindows": false])
}
}
#endif