summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/clock/beats_face.c
diff options
context:
space:
mode:
Diffstat (limited to 'movement/watch_faces/clock/beats_face.c')
-rw-r--r--movement/watch_faces/clock/beats_face.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/movement/watch_faces/clock/beats_face.c b/movement/watch_faces/clock/beats_face.c
index df31ad1c..50c3284d 100644
--- a/movement/watch_faces/clock/beats_face.c
+++ b/movement/watch_faces/clock/beats_face.c
@@ -57,16 +57,8 @@ bool beats_face_loop(movement_event_t event, movement_settings_t *settings, void
watch_display_string(buf, 0);
break;
- case EVENT_MODE_BUTTON_UP:
- movement_move_to_next_face();
- break;
- case EVENT_LIGHT_BUTTON_DOWN:
- movement_illuminate_led();
- break;
- case EVENT_ALARM_BUTTON_DOWN:
- case EVENT_ALARM_BUTTON_UP:
- case EVENT_ALARM_LONG_PRESS:
default:
+ movement_default_loop_handler(event, settings);
break;
}
@@ -88,4 +80,4 @@ uint32_t clock2beats(uint32_t hours, uint32_t minutes, uint32_t seconds, uint32_
retval %= 100000;
return retval;
-} \ No newline at end of file
+}