summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complication/countdown_face.c
diff options
context:
space:
mode:
authorJeremy O'Brien <neutral@fastmail.com>2023-01-24 22:43:31 -0500
committerjoeycastillo <joeycastillo@utexas.edu>2023-01-25 09:23:50 -0600
commit2b22ecc8e43cc21c56d82ee3f89f32dd7b6b8e4a (patch)
treee8a40ebcd6d99ff2a32625ae219a822c770ff6d0 /movement/watch_faces/complication/countdown_face.c
parent12f2d31f98cfc81d1e4ab9365c47aa3038dce4a7 (diff)
downloadSensor-Watch-2b22ecc8e43cc21c56d82ee3f89f32dd7b6b8e4a.tar.gz
Sensor-Watch-2b22ecc8e43cc21c56d82ee3f89f32dd7b6b8e4a.tar.bz2
Sensor-Watch-2b22ecc8e43cc21c56d82ee3f89f32dd7b6b8e4a.zip
add default loop handler to all current watch faces
Diffstat (limited to 'movement/watch_faces/complication/countdown_face.c')
-rw-r--r--movement/watch_faces/complication/countdown_face.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/movement/watch_faces/complication/countdown_face.c b/movement/watch_faces/complication/countdown_face.c
index b2206b8f..f3bbd963 100644
--- a/movement/watch_faces/complication/countdown_face.c
+++ b/movement/watch_faces/complication/countdown_face.c
@@ -160,9 +160,6 @@ bool countdown_face_loop(movement_event_t event, movement_settings_t *settings,
}
draw(state, event.subsecond);
break;
- case EVENT_MODE_BUTTON_UP:
- movement_move_to_next_face();
- break;
case EVENT_LIGHT_BUTTON_UP:
switch(state->mode) {
case cd_running:
@@ -216,8 +213,10 @@ bool countdown_face_loop(movement_event_t event, movement_settings_t *settings,
movement_move_to_face(0);
break;
case EVENT_LOW_ENERGY_UPDATE:
+ break;
default:
- break;
+ movement_default_loop_handler(event, settings);
+ break;
}
return true;