From 67f63872f867d9dce79c7a30a85e20b523452deb Mon Sep 17 00:00:00 2001 From: Wesley Ellis Date: Sat, 7 Mar 2026 16:53:48 -0500 Subject: [PATCH] don't resign from tomato time if timer is running --- watch-faces/complication/tomato_face.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/watch-faces/complication/tomato_face.c b/watch-faces/complication/tomato_face.c index 321e5dea..7c419d55 100644 --- a/watch-faces/complication/tomato_face.c +++ b/watch-faces/complication/tomato_face.c @@ -169,7 +169,9 @@ bool tomato_face_loop(movement_event_t event, void *context) { tomato_draw(state); break; case EVENT_TIMEOUT: - movement_move_to_face(0); + if (state->mode != tomato_run) { + movement_move_to_face(0); + } break; default: movement_default_loop_handler(event);