fix editing events on mac and ios

toolbar label()s instead of buton("label")s
fix event add/delete/tick animation
fix event complete progress on ios and mac and that it just spazzed out
browsing true for symbols browsing (not picking)
This commit is contained in:
neon443
2025-06-15 21:18:58 +01:00
parent 0cffe243eb
commit 5ec16dd67a
9 changed files with 46 additions and 30 deletions

View File

@@ -40,11 +40,11 @@ struct CompleteEventButton: View {
let elapsed = Date().timeIntervalSince(completeStartTime)
progress = min(1, elapsed)
if progress > 1 {
timer.invalidate()
progress = 0
if progress >= 1 {
withAnimation { completeInProgress = false }
viewModel.completeEvent(&event)
timer.invalidate()
progress = 0
}
}
RunLoop.main.add(timer!, forMode: .common)