From: Wesley Ellis Date: Sat, 7 Mar 2026 21:53:48 +0000 (-0500) Subject: don't resign from tomato time if timer is running X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=67f63872f867d9dce79c7a30a85e20b523452deb;p=sensor-watch.git don't resign from tomato time if timer is running --- diff --git a/watch-faces/complication/tomato_face.c b/watch-faces/complication/tomato_face.c index 321e5de..7c419d5 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);