From: David Keck Date: Wed, 19 Jan 2022 03:53:25 +0000 (-0500) Subject: Changed reset mode to setting instead of waiting X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=01df0ea231f48f536176ab7088bff7ba73cb89b8;p=sensor-watch.git 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. --- diff --git a/movement/watch_faces/complications/countdown_face.c b/movement/watch_faces/complications/countdown_face.c index c122c50..99eb124 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);