diff options
author | Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> | 2024-02-25 14:11:07 -0300 |
---|---|---|
committer | Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> | 2024-02-25 15:24:15 -0300 |
commit | 5c376d9b9a880e10f3b635508aa21847ea347e6f (patch) | |
tree | 2466a8738dd95892a4d23257d83679be04a8d604 /movement | |
parent | 2df6b2879ad134a56b8486b7224f866c689876cd (diff) | |
download | Sensor-Watch-5c376d9b9a880e10f3b635508aa21847ea347e6f.tar.gz Sensor-Watch-5c376d9b9a880e10f3b635508aa21847ea347e6f.tar.bz2 Sensor-Watch-5c376d9b9a880e10f3b635508aa21847ea347e6f.zip |
faces/clock: indicate alarm only when necessary
The alarm state is not modified within the clock face.
Therefore, it only needs to be set when the face is activated.
Diffstat (limited to 'movement')
-rw-r--r-- | movement/watch_faces/clock/clock_face.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/movement/watch_faces/clock/clock_face.c b/movement/watch_faces/clock/clock_face.c index f6c3f3f4..8a396569 100644 --- a/movement/watch_faces/clock/clock_face.c +++ b/movement/watch_faces/clock/clock_face.c @@ -237,8 +237,6 @@ bool clock_face_loop(movement_event_t event, movement_settings_t *settings, void clock_display_clock(settings, state, current); clock_check_battery_periodically(state, current); - - clock_indicate_alarm(settings); clock_indicate_low_available_power(state); state->date_time.previous = current; |