bitcoin_price: fix

This commit is contained in:
Thomas Farstrike
2025-05-16 11:07:04 +02:00
parent 1adfe540f8
commit 08fb82a479
5 changed files with 27 additions and 19 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ def start_app(app_dir, is_launcher=False):
manifest_path = f"{app_dir}/META-INF/MANIFEST.JSON"
app = parse_manifest(manifest_path)
start_script_fullpath = f"{app_dir}/{app.entrypoint}"
#execute_script_new_thread(start_script_fullpath, True, is_launcher, True)
#execute_script_new_thread(start_script_fullpath, True, is_launcher, True) # Starting (GUI?) apps in a new thread can cause hangs (GIL lock?)
execute_script(start_script_fullpath, True, is_launcher, True)
# Launchers have the bar, other apps don't have it
if is_launcher: