We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f57771c commit f831171Copy full SHA for f831171
1 file changed
internal_filesystem/builtin/apps/com.micropythonos.appstore/assets/appstore.py
@@ -69,7 +69,8 @@ def download_app_index(self, json_url):
69
self.apps = [app for app in self.apps if not (app.name in seen or seen.add(app.name))]
70
# Sort apps by app.name
71
self.apps.sort(key=lambda x: x.name.lower()) # Use .lower() for case-insensitive sorting
72
- self.please_wait_label.add_flag(lv.obj.FLAG.HIDDEN)
+ time.sleep_ms(100)
73
+ lv.async_call(lambda l: self.please_wait_label.add_flag(lv.obj.FLAG.HIDDEN), None)
74
lv.async_call(lambda l: self.create_apps_list(), None)
75
except Exception as e:
76
print(f"ERROR: could not parse reponse.text JSON: {e}")
0 commit comments