Skip to content

Commit 39fe594

Browse files
committed
DisplayApp: Go to clock on sleep if no app loaded
When turning off the screen, if there is no actual app loaded (i.e. we are still in the Launcher, Notifications, QuickSettings, or Settings screens) we should just reload the Clock app directly.
1 parent f9a16fe commit 39fe594

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/displayapp/DisplayApp.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,11 @@ void DisplayApp::Refresh() {
243243
vTaskDelay(100);
244244
}
245245
lcd.Sleep();
246+
// Since the active screen is not really an app, go back to Clock.
247+
if (currentApp == Apps::Launcher || currentApp == Apps::Notifications || currentApp == Apps::QuickSettings ||
248+
currentApp == Apps::Settings) {
249+
LoadScreen(Apps::Clock, DisplayApp::FullRefreshDirections::None);
250+
}
246251
PushMessageToSystemTask(Pinetime::System::Messages::OnDisplayTaskSleeping);
247252
state = States::Idle;
248253
break;

0 commit comments

Comments
 (0)