Compare commits

...
+4 -1
View File
@@ -53,7 +53,10 @@ struct RootView: View {
.sheet(isPresented: $showingAbout) {
AboutView { showingAbout = false }
}
.sheet(isPresented: $workflow.wizard.showingGamutViewer) {
.sheet(isPresented: Binding(
get: { workflow.wizard.showingGamutViewer },
set: { workflow.wizard.showingGamutViewer = $0 }
)) {
GamutView(profileGamURL: workflow.wizard.gamutProfileURL)
}
}