Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aef8801913 |
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user