From d5193b0b6655424884d39f5217ec3137906afee4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 3 Apr 2026 13:06:35 -0400 Subject: [PATCH] play.py: widen selection bar to fit tuning/Hz Co-Authored-By: Claude Opus 4.6 (1M context) --- play.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play.py b/play.py index ae98892..ef2cce5 100644 --- a/play.py +++ b/play.py @@ -499,7 +499,7 @@ def pick_track(): num = f"{i + 1:>2}." # Fixed bar width — pad to consistent length - bar_width = name_col + 35 # enough for all columns + bar_width = name_col + 50 # enough for all columns + extras if i == selected[0]: full = f" ▸ {num} {name_display}{meta_str}" full = full[:bar_width].ljust(bar_width)