From: David Volovskiy Date: Wed, 27 Aug 2025 13:09:44 +0000 (-0400) Subject: Fixed proper usage of blinkng X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=2770b8b924cb46308f17114cdc4c4aebad8a1d3f;p=sensor-watch.git Fixed proper usage of blinkng --- diff --git a/watch-faces/complication/endless_runner_face.c b/watch-faces/complication/endless_runner_face.c index f43a831..a3f7e37 100644 --- a/watch-faces/complication/endless_runner_face.c +++ b/watch-faces/complication/endless_runner_face.c @@ -558,7 +558,9 @@ bool endless_runner_face_loop(movement_event_t event, void *context) { switch (event.event_type) { case EVENT_ACTIVATE: disable_tap_control(state); - clock_stop_tick_tock_animation(); + if (watch_sleep_animation_is_running()) { + watch_stop_blink(); + } check_and_reset_hi_score(state); display_title(state); break;