We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58b02ea commit d4b8a7dCopy full SHA for d4b8a7d
internal_filesystem/main.py
@@ -65,7 +65,7 @@ def close_drawer(to_launcher=False):
65
if drawer_open:
66
drawer_open=False
67
drawer.add_flag(lv.obj.FLAG.HIDDEN)
68
- if not to_launcher:
+ if not to_launcher and not is_launcher(foreground_app_name):
69
close_bar()
70
71
def open_bar():
@@ -270,6 +270,10 @@ def launcher_event(e):
270
import uio
271
import time
272
273
+def is_launcher(app_name):
274
+ # Simple check, could be more elaborate by checking the MANIFEST.MF for the app...
275
+ return "launcher" in app_name
276
+
277
def parse_manifest(manifest_path):
278
name = "Unknown"
279
start_script = "assets/start.py"
0 commit comments