From 2d280a80fd8b48079c6a2b08f69bf7405400bfb6 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Wed, 23 Jul 2025 17:21:30 -0500 Subject: [PATCH] removed -5 spacing from album y_pos for music manager --- 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 89d4eaae..4edc83ea 100644 --- a/src/music_manager.py +++ b/src/music_manager.py @@ -791,7 +791,7 @@ class MusicManager: # --- Album --- y_pos_album = y_pos_artist + line_height_artist_album + padding_between_lines - if (matrix_height - y_pos_album - 5) >= line_height_artist_album : + if (matrix_height - y_pos_album) >= line_height_artist_album : album_width = self.display_manager.get_text_width(album, font_artist_album) if album_width <= text_area_width: self.display_manager.draw_text(album, x=text_area_x_start, y=y_pos_album, color=(150, 150, 150), font=font_artist_album)