play.py: left-justify key names in picker

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-03 13:04:23 -04:00
parent 420462d830
commit 46a440650f
+1 -1
View File
@@ -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"