From f030a5f92849a7b7ad55d4bad02e11f2014412d8 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 6 Jun 2025 21:57:54 +0200 Subject: [PATCH] Fix menu bar being hidden after starting an app --- internal_filesystem/lib/mpos/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/lib/mpos/apps.py b/internal_filesystem/lib/mpos/apps.py index fc386caa..64efba6a 100644 --- a/internal_filesystem/lib/mpos/apps.py +++ b/internal_filesystem/lib/mpos/apps.py @@ -159,7 +159,7 @@ def find_main_launcher_activity(app): def is_launcher(app_name): print(f"checking is_launcher for {app_name}") # Simple check, could be more elaborate by checking the MANIFEST.JSON for the app... - return "launcher" in app_name + return "launcher" in app_name or len(mpos.ui.screen_stack) < 2 # assumes the first one on the stack is the launcher class App: