]> git.earman.xyz Git - sensor-watch.git/commitdiff
Fixed proper usage of blinkng
authorDavid Volovskiy <devolov@gmail.com>
Wed, 27 Aug 2025 13:09:44 +0000 (09:09 -0400)
committerDavid Volovskiy <devolov@gmail.com>
Wed, 27 Aug 2025 13:09:44 +0000 (09:09 -0400)
watch-faces/complication/endless_runner_face.c

index f43a831ba80474f38c7c37eb2d7e20e5aa871407..a3f7e371f5f708587bee296f24106170d391553b 100644 (file)
@@ -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;