]> git.earman.xyz Git - sensor-watch.git/commitdiff
Use the looped arrows indicator (LAP) instead of the bell one on the custom LCD for...
authorMathias Kende <mathias@kende.fr>
Sat, 6 Sep 2025 19:08:49 +0000 (21:08 +0200)
committerMathias Kende <mathias@kende.fr>
Sat, 6 Sep 2025 19:21:04 +0000 (21:21 +0200)
watch-faces/complication/countdown_face.c

index edfb19f9acc098e5e88fc697e72a420ec0fbdd08..9785ab3c3b079fa37b14e9417c721a8f68895d90 100644 (file)
@@ -338,10 +338,11 @@ bool countdown_face_loop(movement_event_t event, void *context) {
                 // Toggle auto-repeat
                 button_beep();
                 state->repeat = !state->repeat;
+                watch_indicator_t repeat = watch_get_lcd_type() == WATCH_LCD_TYPE_CLASSIC ? WATCH_INDICATOR_BELL : WATCH_INDICATOR_LAP;
                 if(state->repeat)
-                    watch_set_indicator(WATCH_INDICATOR_BELL);
+                    watch_set_indicator(repeat);
                 else
-                    watch_clear_indicator(WATCH_INDICATOR_BELL);
+                    watch_clear_indicator(repeat);
             }
             break;
         case EVENT_ALARM_LONG_UP: