ソースを参照

refactor: disable tab menus

Sam Jaffe 2 週間 前
コミット
5727be434c
1 ファイル変更4 行追加1 行削除
  1. 4 1
      Todos/TodosApp.swift

+ 4 - 1
Todos/TodosApp.swift

@@ -35,7 +35,10 @@ struct TodosApp: App {
 
   var body: some Scene {
     WindowGroup {
-      ContentView()
+      ContentView(isMoveMode: $isMoveMode).onAppear {
+        // Disable the tab bar options
+        NSWindow.allowsAutomaticWindowTabbing = false
+      }
     }
     .modelContainer(sharedModelContainer)
     .commands {