From 7e2d4875460ea51490b91e094a94938262005d4e Mon Sep 17 00:00:00 2001 From: Steveis Date: Sun, 2 Aug 2026 22:18:08 +0100 Subject: [PATCH] Release wake lock when timer expires --- 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();