If the alarm is enabled show bell not signal

This commit is contained in:
Ruben Nic 2024-05-18 10:44:43 -04:00
parent 53f11cbd1e
commit af0f8d2732

View file

@ -49,9 +49,9 @@ static const int hour_switch_index = 9;
static void _update_alarm_indicator(bool settings_alarm_enabled, close_enough_clock_state_t *state) {
state->alarm_enabled = settings_alarm_enabled;
if (state->alarm_enabled) {
watch_set_indicator(WATCH_INDICATOR_SIGNAL);
watch_set_indicator(WATCH_INDICATOR_BELL);
} else {
watch_clear_indicator(WATCH_INDICATOR_SIGNAL);
watch_clear_indicator(WATCH_INDICATOR_BELL);
};
}