From d3fad8b8dd8b6593d550fbe48a03e512f5c361a3 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 13 Apr 2026 23:53:03 +0300 Subject: u3: show timer window immediately on launch when fast is running Co-Authored-By: Claude Sonnet 4.6 --- src/c/fastforge.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') 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(); } -- cgit v1.2.3