From 00c571b2cad5372c3b2f911eaab79cf5b9e7d1cc Mon Sep 17 00:00:00 2001 From: 0xallam Date: Sun, 22 Feb 2026 09:28:52 -0800 Subject: [PATCH] fix: Lower sidebar min width from 140 to 120 for smaller terminals --- strix/interface/tui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strix/interface/tui.py b/strix/interface/tui.py index cb1adff..eeaa2ea 100644 --- a/strix/interface/tui.py +++ b/strix/interface/tui.py @@ -687,7 +687,7 @@ class StrixTUIApp(App): # type: ignore[misc] CSS_PATH = "assets/tui_styles.tcss" ALLOW_SELECT = True - SIDEBAR_MIN_WIDTH = 140 + SIDEBAR_MIN_WIDTH = 120 selected_agent_id: reactive[str | None] = reactive(default=None) show_splash: reactive[bool] = reactive(default=True)