summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-13 23:53:03 +0300
committerPaul Buetow <paul@buetow.org>2026-04-13 23:53:03 +0300
commitd3fad8b8dd8b6593d550fbe48a03e512f5c361a3 (patch)
tree77852d7a917794247e0c6215bdc36dc11a97800e /src
parente3a0817da6bd108c5fdba65bb2585b4069fa68b1 (diff)
u3: show timer window immediately on launch when fast is running
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'src')
-rw-r--r--src/c/fastforge.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/c/fastforge.c b/src/c/fastforge.c
index f1d0131..9435166 100644
--- a/src/c/fastforge.c
+++ b/src/c/fastforge.c
@@ -2077,6 +2077,11 @@ static void init(void) {
set_placeholder_content("DETAIL", "FastForge destination placeholder.", "BACK Menu");
init_windows();
window_stack_push(s_menu_window, true);
+ /* If a fast is already running, show the timer immediately on launch
+ * so the user lands on the live countdown rather than the main menu. */
+ if (fast_is_running()) {
+ window_stack_push(s_timer_window, false);
+ }
schedule_alarm_if_needed();
sync_main_menu_state();
}