From 25506410d0941fa016551964f3cc9eb288b1f0df Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 24 Jul 2025 10:20:56 -0500 Subject: [PATCH] adjusting music manager artist and album location --- 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 0c9221a7..d7092d12 100644 --- a/src/music_manager.py +++ b/src/music_manager.py @@ -770,7 +770,7 @@ class MusicManager: self.title_scroll_tick = 0 # --- Artist --- - y_pos_artist = y_pos_title + line_height_title + padding_between_lines - 1 + y_pos_artist = y_pos_title + line_height_title + padding_between_lines artist_width = self.display_manager.get_text_width(artist, font_artist_album) current_artist_display_text = artist if artist_width > text_area_width: @@ -798,7 +798,7 @@ class MusicManager: # --- Progress Bar --- progress_bar_height = 3 - progress_bar_y = matrix_height - progress_bar_height - 1 + progress_bar_y = matrix_height - progress_bar_height duration_ms = current_track_info_snapshot.get('duration_ms', 0) progress_ms = current_track_info_snapshot.get('progress_ms', 0)