Revert previous as it's still crashing on macOS

This commit is contained in:
Thomas Ricouard 2023-01-05 21:40:15 +01:00
parent faefa291bf
commit 27f0ee45b7

View file

@ -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
}
}