From ae4d48bd16bb8c98d177eeeafc3ad64eef3aa7a9 Mon Sep 17 00:00:00 2001 From: nayan Date: Wed, 26 Aug 2026 15:05:20 -0400 Subject: [PATCH] fix ugly --- .../selfdrive/ui/sunnypilot/layouts/settings/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py b/openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py index 0bbc05b96e..3aa115139f 100644 --- a/openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py +++ b/openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py @@ -183,14 +183,14 @@ class ModelsLayout(Widget): bundle = get_selected_bundle(ui_state.params, source) name = bundle.internalName if bundle else default_model_name(source) color = ON_COLOR if (source == carry_source and name == carry_internal) else rl.LIGHTGRAY - icon, icon_color = "icons/checkmark.png", None + name = "● " + name if source == "usbgpu": if big_state == 'failed': - color, icon, icon_color = rl.RED, "icons/close2.png", rl.RED + color = rl.RED elif big_state == 'loading': color = rl.GOLD segments.append((label, rl.GRAY, None, None)) - segments.append((name, color, icon, icon_color)) + segments.append((name, color, None, None)) return segments @staticmethod