Skip to content

Commit cb17ba1

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 6b5235c commit cb17ba1

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
@@ -246,6 +246,11 @@ void DisplayApp::Refresh() {
246246
vTaskDelay(100);
247247
}
248248
lcd.Sleep();
249+
// Since the active screen is not really an app, go back to Clock.
250+
if (currentApp == Apps::Launcher || currentApp == Apps::Notifications || currentApp == Apps::QuickSettings ||
251+
currentApp == Apps::Settings) {
252+
LoadScreen(Apps::Clock, DisplayApp::FullRefreshDirections::None);
253+
}
249254
PushMessageToSystemTask(Pinetime::System::Messages::OnDisplayTaskSleeping);
250255
state = States::Idle;
251256
break;

0 commit comments

Comments
 (0)