diff --git a/IceCubesApp/App/IceCubesApp.swift b/IceCubesApp/App/IceCubesApp.swift index cfeab733..df6c5490 100644 --- a/IceCubesApp/App/IceCubesApp.swift +++ b/IceCubesApp/App/IceCubesApp.swift @@ -41,6 +41,7 @@ struct IceCubesApp: App { .environmentObject(currentInstance) .environmentObject(theme) .environmentObject(watcher) + .quickLookPreview($quickLook.url, in: quickLook.urls) } .onChange(of: scenePhase, perform: { scenePhase in handleScenePhase(scenePhase: scenePhase) @@ -59,19 +60,9 @@ struct IceCubesApp: App { @ViewBuilder private var appView: some View { if UIDevice.current.userInterfaceIdiom == .pad || UIDevice.current.userInterfaceIdiom == .mac { - if ProcessInfo.processInfo.isiOSAppOnMac || ProcessInfo.processInfo.isMacCatalystApp { - splitView - } else { - splitView - .quickLookPreview($quickLook.url, in: quickLook.urls) - } + splitView } else { - if ProcessInfo.processInfo.isiOSAppOnMac || ProcessInfo.processInfo.isMacCatalystApp { - tabBarView - } else { - tabBarView - .quickLookPreview($quickLook.url, in: quickLook.urls) - } + tabBarView } }