From 38062d0bee5bec00608444fa3a2b4a2582eca696 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Tue, 16 Sep 2025 14:06:14 -0400 Subject: [PATCH] shift album and artist font down --- src/music_manager.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/music_manager.py b/src/music_manager.py index c8a6af80..dd5e4206 100644 --- a/src/music_manager.py +++ b/src/music_manager.py @@ -775,10 +775,13 @@ class MusicManager: except: artist_album_font_height = LINE_HEIGHT_BDF # Fallback to BDF height + # Ensure we have a reasonable shift (minimum 6 pixels) + font_shift = max(artist_album_font_height, 6) + # Calculate actual pixel positions, shifted down by font height y_pos_title_top = 1 - y_pos_artist_top = int(matrix_height * ARTIST_Y_PERCENT) + artist_album_font_height - y_pos_album_top = int(matrix_height * ALBUM_Y_PERCENT) + artist_album_font_height + y_pos_artist_top = int(matrix_height * ARTIST_Y_PERCENT) + font_shift + y_pos_album_top = int(matrix_height * ALBUM_Y_PERCENT) + font_shift TEXT_SCROLL_DIVISOR = 5