feat(countdown): rocket countdown (#45)

This commit is contained in:
Jens Krause
2025-01-08 18:52:18 +01:00
committed by GitHub
parent 468b4a5abf
commit c8af76c9e5
7 changed files with 111 additions and 11 deletions

View File

@@ -179,7 +179,7 @@ impl App {
fn clock_is_running(&self) -> bool {
match self.content {
Content::Countdown => self.countdown.get_clock().is_running(),
Content::Countdown => self.countdown.is_running(),
Content::Timer => self.timer.get_clock().is_running(),
Content::Pomodoro => self.pomodoro.get_clock().is_running(),
}