From 3b4b5a51639016a87ef7309475f2ca83807804cf 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 c1008be0..9c7d87b2 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -446,6 +446,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);