From 013e3450f1a18519bd5591d5183325a4fbcc9271 Mon Sep 17 00:00:00 2001 From: chris-v8 Date: Thu, 7 Nov 2024 10:11:08 +0100 Subject: [PATCH] This commit fixes the issue, where holding the light mode to leave settings at the 'Clear' or 'Loop' dialog doesn't re-enable the colon until the face is loaded again. --- movement/watch_faces/complication/timer_face.c | 1 + 1 file changed, 1 insertion(+) diff --git a/movement/watch_faces/complication/timer_face.c b/movement/watch_faces/complication/timer_face.c index 29392d694..1e5adf477 100644 --- a/movement/watch_faces/complication/timer_face.c +++ b/movement/watch_faces/complication/timer_face.c @@ -109,6 +109,7 @@ static void _draw(timer_state_t *state, uint8_t subsecond) { sprintf(buf, " %02u%02u%02u", state->timers[state->current_timer].unit.hours, state->timers[state->current_timer].unit.minutes, state->timers[state->current_timer].unit.seconds); + watch_set_colon(); break; } buf[0] = 49 + state->current_timer;