movement: reset tick to 1 Hz between watch faces (fixes #36)

This commit is contained in:
Joey Castillo
2022-01-19 11:16:10 -05:00
parent fb71be55ee
commit 138b3d0c5e
12 changed files with 8 additions and 17 deletions

View File

@@ -219,6 +219,8 @@ bool countdown_face_loop(movement_event_t event, movement_settings_t *settings,
void countdown_face_resign(movement_settings_t *settings, void *context) {
(void) settings;
(void) context;
movement_request_tick_frequency(1);
countdown_state_t *state = (countdown_state_t *)context;
if (state->mode == cd_setting) {
state->mode = cd_waiting;
}
}