We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79e1f42 commit b7cbc99Copy full SHA for b7cbc99
Sushitrain/StartView.swift
@@ -448,11 +448,13 @@ struct StartView: View {
448
self.startBackgroundSyncFor(untilFinished ? .timeOrFinished(seconds: 3600) : .time(seconds: 3600))
449
}.disabled(backgroundManager.runningContinuedTask != nil)
450
451
- Divider()
+ if untilFinished {
452
+ Divider()
453
- Button("Wait inside the app", systemImage: "hourglass.circle") {
454
- self.showWaitScreen = true
455
- }.disabled(appState.isFinished)
+ Button("Wait inside the app", systemImage: "hourglass.circle") {
+ self.showWaitScreen = true
456
+ }.disabled(appState.isFinished)
457
+ }
458
}
459
460
0 commit comments