From 842bcae319054536200b725703f731f1337819aa Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Fri, 9 Feb 2024 08:22:47 -0500 Subject: [PATCH] ApplicationList: Reset app menu screen when loading watch face This prevents the application list from loading in the last used screen and instead goes back to the first screen whenever the watch face is loaded. Fixes #2006 --- src/displayapp/DisplayApp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index e5329b2d9d..dc5a887625 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -445,6 +445,7 @@ void DisplayApp::LoadScreen(Apps app, DisplayApp::FullRefreshDirections directio else { currentScreen.reset(userWatchFaces[0].create(controllers)); } + settingsController.SetAppMenu(0); } break; case Apps::Error: currentScreen = std::make_unique(bootError);