From a13af57273610cf035f4187243e084c760201ac1 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 18 Mar 2026 13:05:19 +0100 Subject: [PATCH] Launcher: ignore launchers and MPOS settings (except wifi) --- .../builtin/apps/com.micropythonos.launcher/assets/launcher.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal_filesystem/builtin/apps/com.micropythonos.launcher/assets/launcher.py b/internal_filesystem/builtin/apps/com.micropythonos.launcher/assets/launcher.py index 440ee6b4..48b4eb10 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.launcher/assets/launcher.py +++ b/internal_filesystem/builtin/apps/com.micropythonos.launcher/assets/launcher.py @@ -86,7 +86,8 @@ class Launcher(Activity): iconcont_height = icon_size + label_height for app in AppManager.get_app_list(): - if app.category == "launcher": + if app.category == "launcher" or (app.fullname != "com.micropythonos.settings.wifi" and app.fullname.startswith("com.micropythonos.settings.")): + # Ignore launchers and MPOS settings (except wifi) continue app_name = app.name