diff options
Diffstat (limited to 'Map')
| -rw-r--r-- | Map/Views/MapApp.swift | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Map/Views/MapApp.swift b/Map/Views/MapApp.swift index 0f8ae64..a0e2d60 100644 --- a/Map/Views/MapApp.swift +++ b/Map/Views/MapApp.swift @@ -16,6 +16,8 @@ struct MapApp: App { ContentView() .environment(\.managedObjectContext, persistenceController.container.viewContext) .environmentObject(AppStore(initialState: AppState(), reducer: appStateReducer)) - }.windowStyle(HiddenTitleBarWindowStyle()) + }.windowStyle(HiddenTitleBarWindowStyle()).commands { + SidebarCommands() + } } } |