summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complication/stock_stopwatch_face.c
diff options
context:
space:
mode:
Diffstat (limited to 'movement/watch_faces/complication/stock_stopwatch_face.c')
-rw-r--r--movement/watch_faces/complication/stock_stopwatch_face.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/movement/watch_faces/complication/stock_stopwatch_face.c b/movement/watch_faces/complication/stock_stopwatch_face.c
index 1164eb9a..4a9608d9 100644
--- a/movement/watch_faces/complication/stock_stopwatch_face.c
+++ b/movement/watch_faces/complication/stock_stopwatch_face.c
@@ -251,9 +251,6 @@ bool stock_stopwatch_face_loop(movement_event_t event, movement_settings_t *sett
case EVENT_TICK:
_draw();
break;
- case EVENT_MODE_BUTTON_UP:
- movement_move_to_next_face();
- break;
case EVENT_LIGHT_LONG_PRESS:
// kind od hidden feature: long press toggles light on or off
state->light_on_button = !state->light_on_button;
@@ -313,6 +310,7 @@ bool stock_stopwatch_face_loop(movement_event_t event, movement_settings_t *sett
_draw();
break;
default:
+ movement_default_loop_handler(event, settings);
break;
}
return true;
@@ -323,4 +321,4 @@ void stock_stopwatch_face_resign(movement_settings_t *settings, void *context) {
(void) context;
// cancel the keepalive task
movement_cancel_background_task();
-} \ No newline at end of file
+}