From e0b425ca901a5b98e63dbefa3acd7906d7b5bbe9 Mon Sep 17 00:00:00 2001 From: davidegirardi <16451191+davidegirardi@users.noreply.github.com> Date: Sat, 4 Apr 2026 19:14:00 +0200 Subject: [PATCH] Fix setting bell indicator on other faces on loop --- watch-faces/complication/timer_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watch-faces/complication/timer_face.c b/watch-faces/complication/timer_face.c index aaf824c4..808228ee 100644 --- a/watch-faces/complication/timer_face.c +++ b/watch-faces/complication/timer_face.c @@ -57,7 +57,6 @@ static void _start(timer_state_t *state, bool with_beep) { watch_date_time_t target_dt = watch_utility_date_time_from_unix_time(state->target_ts, movement_get_current_timezone_offset()); state->mode = running; movement_schedule_background_task_for_face(state->watch_face_index, target_dt); - watch_set_indicator(WATCH_INDICATOR_BELL); if (with_beep) watch_buzzer_play_sequence((int8_t *)_sound_seq_start, NULL); } @@ -86,6 +85,7 @@ static void _draw(timer_state_t *state, uint8_t subsecond) { min = result.rem; h = result.quot; sprintf(bottom_time, "%02u%02u%02u", h, min, sec); + watch_set_indicator(WATCH_INDICATOR_BELL); break; case setting: if (state->settings_state == 1) {