diff options
| author | David Keck <davidskeck@users.noreply.github.com> | 2022-01-18 22:53:25 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-18 22:53:25 -0500 | 
| commit | 01df0ea231f48f536176ab7088bff7ba73cb89b8 (patch) | |
| tree | 2e7095c15377234b0679cfb14d30e0e7ffdfb908 | |
| parent | 3d5ec1adda827060e9049a21adf4aff79de0ee48 (diff) | |
| download | Sensor-Watch-01df0ea231f48f536176ab7088bff7ba73cb89b8.tar.gz Sensor-Watch-01df0ea231f48f536176ab7088bff7ba73cb89b8.tar.bz2 Sensor-Watch-01df0ea231f48f536176ab7088bff7ba73cb89b8.zip  | |
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.
| -rw-r--r-- | movement/watch_faces/complications/countdown_face.c | 2 | 
1 files changed, 1 insertions, 1 deletions
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);  | 
