From c33e8094e83c710d5054acdb0a17d06992b341a6 Mon Sep 17 00:00:00 2001 From: firestarsdog <229254897+firestarsdog@users.noreply.github.com> Date: Thu, 2 Jul 2026 23:42:48 -0400 Subject: [PATCH] BigUI WIP: Guess we need more bread... --- selfdrive/ui/layouts/settings/starpilot/aethergrid.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfdrive/ui/layouts/settings/starpilot/aethergrid.py b/selfdrive/ui/layouts/settings/starpilot/aethergrid.py index 58052db14..477e307a1 100644 --- a/selfdrive/ui/layouts/settings/starpilot/aethergrid.py +++ b/selfdrive/ui/layouts/settings/starpilot/aethergrid.py @@ -1189,7 +1189,7 @@ class BreadcrumbController: mouse_pos = gui_app.last_mouse_event.pos - has_overflow = alpha > FADE_THRESH and len(path) > 4 + has_overflow = alpha > FADE_THRESH and len(path) > 6 if has_overflow and alpha >= EXPAND_THRESH: display_path = list(path) @@ -1200,7 +1200,7 @@ class BreadcrumbController: overflow_alpha = 1.0 - (alpha / EXPAND_THRESH) middle_alpha = 0.0 else: - display_path = list(path) if len(path) <= 4 else [path[0], ("...", "action:breadcrumb_history"), path[-1]] + display_path = list(path) if len(path) <= 6 else [path[0], ("...", "action:breadcrumb_history"), path[-1]] overflow_alpha = 1.0 middle_alpha = 0.0