From 46a440650fe2acd99d66945d208339198e4b0e95 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 3 Apr 2026 13:04:23 -0400 Subject: [PATCH] play.py: left-justify key names in picker 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 ed930cb..953d65e 100644 --- a/play.py +++ b/play.py @@ -487,7 +487,7 @@ def pick_track(): # Fixed-width columns for table alignment bpm_col = f"{bpm:>3} BPM" if bpm else " " time_col = f"{m}:{s:02d}" if bpm else " " - key_col = f"{short_key:>8s}" + key_col = f"{short_key:<8s}" extras = "" if pitch: extras += f" {int(pitch)}Hz"