From cf62482e981bbb00ac9dc8b57cd61fbfb9314b6d Mon Sep 17 00:00:00 2001 From: SteveAmor Date: Fri, 31 Jul 2026 16:06:47 +0100 Subject: [PATCH 1/2] Resets the appStack when the display is automatically moved back to the watch face --- src/displayapp/DisplayApp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 84fa603622..1f0fe67433 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -323,6 +323,8 @@ void DisplayApp::Refresh() { if (currentApp == Apps::Launcher || currentApp == Apps::Notifications || currentApp == Apps::QuickSettings || currentApp == Apps::Settings) { LoadScreen(Apps::Clock, DisplayApp::FullRefreshDirections::None); + appStackDirections.Reset(); + returnAppStack.Reset(); // Wait for the clock app to load before moving on. while (!lv_task_handler()) { }; From ab0902e2c892b3161d1fa1e846225b85f32ce706 Mon Sep 17 00:00:00 2001 From: SteveAmor Date: Sun, 2 Aug 2026 21:53:16 +0100 Subject: [PATCH 2/2] Release wakelock when timer is reset --- src/displayapp/screens/Timer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/displayapp/screens/Timer.cpp b/src/displayapp/screens/Timer.cpp index 749d985933..d1256d22a0 100644 --- a/src/displayapp/screens/Timer.cpp +++ b/src/displayapp/screens/Timer.cpp @@ -182,6 +182,7 @@ void Timer::ToggleRunning() { auto timerStatus = timer.GetTimerState(); if (timerStatus && timerStatus->expired) { motorController.StopRinging(); + wakeLock.Release(); Reset(); } else if (timer.IsRunning()) { DisplayTime();