From 669d3ebd4734dcf593b321c2e4d5628104d1d89f 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 cb1adffe..eeaa2ea3 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)