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.
This commit is contained in:
David Keck
2022-01-18 22:53:25 -05:00
committed by GitHub
parent 3d5ec1adda
commit 01df0ea231

View 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);