From 1576e730ea4ff9e055ef2da7d79e21f34a9e0883 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 24 Jul 2025 20:10:57 -0500 Subject: [PATCH] hard coded y values for music title, artist, album --- src/music_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/music_manager.py b/src/music_manager.py index a6701047..75b1033c 100644 --- a/src/music_manager.py +++ b/src/music_manager.py @@ -759,8 +759,8 @@ class MusicManager: # Y positions based on a simple top-down calculation y_pos_title_top = 2 - y_pos_artist_top = y_pos_title_top + PADDING_BETWEEN_LINES - y_pos_album_top = y_pos_artist_top + LINE_HEIGHT_BDF + PADDING_BETWEEN_LINES + y_pos_artist_top = 12 + y_pos_album_top = 22 TEXT_SCROLL_DIVISOR = 5