From 82f4aa88c815dfaa740286b0da8a8f0a159770b4 Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Wed, 26 Aug 2026 05:09:26 -0400 Subject: [PATCH] [TIZI/TICI] ui: model rows show full names and the failover note reopens with the page --- openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py b/openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py index 80904fa5b8..8ada3e3f8d 100644 --- a/openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py +++ b/openpilot/selfdrive/ui/sunnypilot/layouts/settings/models.py @@ -346,7 +346,7 @@ class ModelsLayout(Widget): source = active_source() for item, item_source in ((self.small_model_item, "qcom"), (self.big_model_item, "usbgpu")): bundle = get_selected_bundle(ui_state.params, item_source) - name = bundle.internalName if bundle else default_model_name(item_source) + name = bundle.displayName if bundle else default_model_name(item_source) color = ON_COLOR if item_source == source else style.ITEM_TEXT_VALUE_COLOR item.action_item.set_value(name, color) @@ -365,3 +365,4 @@ class ModelsLayout(Widget): def show_event(self): self._scroller.show_event() + self._last_note = None # re-expand the failover note every time the page opens