We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5691058 commit f9ec35dCopy full SHA for f9ec35d
internal_filesystem/builtin/apps/com.micropythonos.launcher/assets/launcher.py
@@ -37,8 +37,6 @@ def onResume(self, screen):
37
iconcont_width = icon_size + label_height
38
iconcont_height = icon_size + label_height
39
40
- app_list = PackageManager.app_list
41
-
42
import time
43
start = time.ticks_ms()
44
@@ -50,7 +48,7 @@ def onResume(self, screen):
50
48
print("WARNING: could not get default focusgroup")
51
49
52
# Create UI for each app
53
- for app in app_list:
+ for app in PackageManager.get_app_list():
54
app_name = app.name
55
app_dir_fullpath = app.installed_path
56
print(f"Adding app {app_name} from {app_dir_fullpath}")
0 commit comments