tick_animation is now sleep_animation (which just displays an indicator on new LCD)
This commit is contained in:
@@ -199,14 +199,14 @@ static void clock_display_low_energy(watch_date_time date_time) {
|
||||
}
|
||||
|
||||
static void clock_start_tick_tock_animation(void) {
|
||||
if (!watch_tick_animation_is_running()) {
|
||||
watch_start_tick_animation(500);
|
||||
if (!watch_sleep_animation_is_running()) {
|
||||
watch_start_sleep_animation(500);
|
||||
}
|
||||
}
|
||||
|
||||
static void clock_stop_tick_tock_animation(void) {
|
||||
if (watch_tick_animation_is_running()) {
|
||||
watch_stop_tick_animation();
|
||||
if (watch_sleep_animation_is_running()) {
|
||||
watch_stop_sleep_animation();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user