From 881861f372db763bb503b60c8a5b0dc2a9555b1a Mon Sep 17 00:00:00 2001 From: nayan Date: Fri, 27 Mar 2026 15:03:32 -0400 Subject: [PATCH] fix label --- selfdrive/ui/sunnypilot/mici/layouts/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfdrive/ui/sunnypilot/mici/layouts/models.py b/selfdrive/ui/sunnypilot/mici/layouts/models.py index 11067159b4..12ff9e43dd 100644 --- a/selfdrive/ui/sunnypilot/mici/layouts/models.py +++ b/selfdrive/ui/sunnypilot/mici/layouts/models.py @@ -29,8 +29,8 @@ class CurrentModelInfo(Widget): self.current_model_header = UnifiedLabel(tr("active model"), 48, max_width=max_width, text_color=header_color, font_weight=FontWeight.DISPLAY) self.current_model_text = UnifiedLabel(tr("default model"), 32, max_width=max_width, text_color=subheader_color, font_weight=FontWeight.ROMAN) - self.info_header = UnifiedLabel("", 48, text_color=header_color, font_weight=FontWeight.DISPLAY) - self.info_text = UnifiedLabel("", 32, max_width=max_width, text_color=subheader_color, font_weight=FontWeight.ROMAN) + self.info_header = UnifiedLabel("cache size", 48, max_width=max_width, text_color=header_color, font_weight=FontWeight.DISPLAY) + self.info_text = UnifiedLabel("0 mb", 32, max_width=max_width, text_color=subheader_color, font_weight=FontWeight.ROMAN) def _render(self, _): self.current_model_header.set_position(self._rect.x + 20, self._rect.y - 10)