From 0479257d19cc5858188561deea24cd61dbe07779 Mon Sep 17 00:00:00 2001 From: Sven Knebel Date: Thu, 30 May 2024 16:47:53 +0100 Subject: [PATCH] App launcher: clean up menu on reload Reloading the menu set a new menu, but the old one still exists and was also reacting to button presses, leading to chaos when multiple instances tried launching apps. --- modules/system/launcher/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/system/launcher/app.py b/modules/system/launcher/app.py index bfc28e4..95679fa 100644 --- a/modules/system/launcher/app.py +++ b/modules/system/launcher/app.py @@ -159,6 +159,7 @@ def select_handler(self, item, idx): break def back_handler(self): + self.menu._cleanup() self.update_menu() return # if self.current_menu == "main":