summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complication/interval_face.c
diff options
context:
space:
mode:
Diffstat (limited to 'movement/watch_faces/complication/interval_face.c')
-rw-r--r--movement/watch_faces/complication/interval_face.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/movement/watch_faces/complication/interval_face.c b/movement/watch_faces/complication/interval_face.c
index 0c35cdfc..1f982d3a 100644
--- a/movement/watch_faces/complication/interval_face.c
+++ b/movement/watch_faces/complication/interval_face.c
@@ -664,14 +664,12 @@ bool interval_face_loop(movement_event_t event, movement_settings_t *settings, v
watch_buzzer_play_sequence((int8_t *)_sound_seq_finish, NULL);
}
break;
- case EVENT_MODE_BUTTON_UP:
- movement_move_to_next_face();
- break;
case EVENT_TIMEOUT:
if (state->face_state != interval_state_running) movement_move_to_face(0);
break;
default:
- break;
+ movement_default_loop_handler(event, settings);
+ break;
}
return true;
-} \ No newline at end of file
+}