From c1eac53c63b14bde3724fe950ba9129d1c16731b Mon Sep 17 00:00:00 2001 From: joeycastillo Date: Sun, 22 Sep 2024 13:57:16 -0400 Subject: [PATCH] don't time out first watch face --- movement.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/movement.c b/movement.c index a7bf92e2..3f0c1c59 100644 --- a/movement.c +++ b/movement.c @@ -584,7 +584,7 @@ bool app_loop(void) { } // if we have timed out of our timeout countdown, give the app a hint that they can resign. - if (movement_state.timeout_ticks == 0) { + if (movement_state.timeout_ticks == 0 && movement_state.current_face_idx != 0) { movement_state.timeout_ticks = -1; if (movement_state.settings.bit.to_always == false) { // if "timeout always" is false, give the current watch face a chance to exit gracefully...