From 01df0ea231f48f536176ab7088bff7ba73cb89b8 Mon Sep 17 00:00:00 2001 From: David Keck Date: Tue, 18 Jan 2022 22:53:25 -0500 Subject: [PATCH] Changed reset mode to setting instead of waiting After thinking about this, I think it is more intuitive that this would only apply when in setting mode. --- movement/watch_faces/complications/countdown_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/movement/watch_faces/complications/countdown_face.c b/movement/watch_faces/complications/countdown_face.c index c122c502..99eb1243 100644 --- a/movement/watch_faces/complications/countdown_face.c +++ b/movement/watch_faces/complications/countdown_face.c @@ -199,7 +199,7 @@ bool countdown_face_loop(movement_event_t event, movement_settings_t *settings, ring(state); break; case EVENT_ALARM_LONG_PRESS: - if (state->mode == cd_waiting) { + if (state->mode == cd_setting) { state->minutes = DEFAULT_MINUTES; state->seconds = 0; draw(state, event.subsecond);