From: joeycastillo Date: Sun, 22 Sep 2024 17:57:16 +0000 (-0400) Subject: don't time out first watch face X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=c1eac53c63b14bde3724fe950ba9129d1c16731b;p=sensor-watch.git don't time out first watch face --- diff --git a/movement.c b/movement.c index a7bf92e..3f0c1c5 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...