From 14e87d2909c385bb6427bf6af89c383bb706f5d7 Mon Sep 17 00:00:00 2001 From: joeycastillo Date: Sun, 22 Sep 2024 14:22:33 -0400 Subject: [PATCH] fix for minutes not updating after refactor --- watch-faces/clock/simple_clock_face.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/watch-faces/clock/simple_clock_face.c b/watch-faces/clock/simple_clock_face.c index 54bfdb3f..19c661ca 100644 --- a/watch-faces/clock/simple_clock_face.c +++ b/watch-faces/clock/simple_clock_face.c @@ -106,6 +106,8 @@ bool simple_clock_face_loop(movement_event_t event, movement_settings_t *setting } else if ((date_time.reg >> 12) == (previous_date_time >> 12) && event.event_type != EVENT_LOW_ENERGY_UPDATE) { // everything before minutes is the same. sprintf(buf, "%02d%02d", date_time.unit.minute, date_time.unit.second); + watch_display_text(WATCH_POSITION_MINUTES, buf); + watch_display_text(WATCH_POSITION_SECONDS, buf + 2); } else { // other stuff changed; let's do it all. #ifndef CLOCK_FACE_24H_ONLY