world clock: bugfix, clear seconds when entering LE mode

This commit is contained in:
Joey Castillo 2025-04-28 18:29:37 -04:00
parent ff3b69a38b
commit 3f08648fc4

View File

@ -207,7 +207,10 @@ static bool world_clock_face_do_display_mode(movement_event_t event, world_clock
watch_display_text(WATCH_POSITION_HOURS, buf + 2);
watch_display_text(WATCH_POSITION_MINUTES, buf + 4);
if (event.event_type == EVENT_LOW_ENERGY_UPDATE) {
if (!watch_sleep_animation_is_running()) watch_start_sleep_animation(500);
if (!watch_sleep_animation_is_running()) {
watch_display_text(WATCH_POSITION_SECONDS, " ");
watch_start_sleep_animation(500);
}
} else {
watch_display_text(WATCH_POSITION_SECONDS, buf + 6);
}