From 6535ce113afce192fefa63ef2a4f1470454a8370 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 24 Jul 2025 20:14:46 -0500 Subject: [PATCH] updated hard coded y values for music title, artist, album --- src/music_manager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/music_manager.py b/src/music_manager.py index 5bbf6aa7..56b90274 100644 --- a/src/music_manager.py +++ b/src/music_manager.py @@ -758,9 +758,9 @@ class MusicManager: PADDING_BETWEEN_LINES = 1 # Y positions based on a simple top-down calculation - y_pos_title_top = 2 - y_pos_artist_top = 12 - y_pos_album_top = 20 + y_pos_title_top = 1 + y_pos_artist_top = 10 + y_pos_album_top = 18 TEXT_SCROLL_DIVISOR = 5