From 4b1b343a8f0c1ab8c9bb9467f5213735f8685634 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Tue, 16 Sep 2025 14:13:23 -0400 Subject: [PATCH] shift album font down 2 pixels --- src/music_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/music_manager.py b/src/music_manager.py index 7245cfec..efa254b7 100644 --- a/src/music_manager.py +++ b/src/music_manager.py @@ -783,7 +783,7 @@ class MusicManager: y_pos_artist_top = int(matrix_height * ARTIST_Y_PERCENT) + font_shift # For album, use a smaller shift to ensure it fits above progress bar - album_shift = min(font_shift, 3) # Cap album shift at 3 pixels to preserve space + album_shift = min(font_shift, 5) # Cap album shift at 5 pixels to preserve space y_pos_album_top = int(matrix_height * ALBUM_Y_PERCENT) + album_shift TEXT_SCROLL_DIVISOR = 5