From e199292bf84218f67c577cd9a10fce51ef5ec5de Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 25 Apr 2025 21:48:08 -0500 Subject: [PATCH] shift mlb upcoming date up 3 pixels --- src/mlb_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlb_manager.py b/src/mlb_manager.py index 63439672..a6837ef3 100644 --- a/src/mlb_manager.py +++ b/src/mlb_manager.py @@ -165,7 +165,7 @@ class BaseMLBManager: date_bbox = draw.textbbox((0, 0), game_date, font=self.display_manager.font) date_width = date_bbox[2] - date_bbox[0] date_x = (width - date_width) // 2 - date_y = (height) // 2 # Position in center + date_y = (height - date_bbox[3]) // 2 - 3 # Position in center draw.text((date_x, date_y), game_date, fill=(255, 255, 255), font=self.display_manager.font) # Draw time below date using PressStart2P