From: Joey Castillo Date: Thu, 29 May 2025 03:43:13 +0000 (-0400) Subject: world clock: blink colon in low energy mode X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=9a712258f891f7ef401a472c741c72806db28567;p=sensor-watch.git world clock: blink colon in low energy mode --- diff --git a/watch-faces/clock/world_clock_face.c b/watch-faces/clock/world_clock_face.c index dadf755..4981262 100644 --- a/watch-faces/clock/world_clock_face.c +++ b/watch-faces/clock/world_clock_face.c @@ -153,7 +153,10 @@ void world_clock_face_activate(void *context) { state->current_screen = 0; _update_timezone_offset(state); - if (watch_sleep_animation_is_running()) watch_stop_sleep_animation(); + if (watch_sleep_animation_is_running()) { + watch_stop_sleep_animation(); + watch_stop_blink(); + } } static bool world_clock_face_do_display_mode(movement_event_t event, world_clock_state_t *state) { @@ -210,6 +213,7 @@ static bool world_clock_face_do_display_mode(movement_event_t event, world_clock if (!watch_sleep_animation_is_running()) { watch_display_text(WATCH_POSITION_SECONDS, " "); watch_start_sleep_animation(500); + watch_start_indicator_blink_if_possible(WATCH_INDICATOR_COLON, 500); } } else { watch_display_text(WATCH_POSITION_SECONDS, buf + 6);