]> git.earman.xyz Git - sensor-watch.git/commitdiff
Changed reset mode to setting instead of waiting
authorDavid Keck <davidskeck@users.noreply.github.com>
Wed, 19 Jan 2022 03:53:25 +0000 (22:53 -0500)
committerGitHub <noreply@github.com>
Wed, 19 Jan 2022 03:53:25 +0000 (22:53 -0500)
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

index c122c502467f9dd71874bd25d7b57751a35eee5b..99eb12430d4490ec40103229926880ce4aba0f01 100644 (file)
@@ -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);