From c51bd4d3e0df1dba60d17e2c4adc4fc9e1c0e20e Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Mon, 26 May 2025 11:07:23 -0500 Subject: [PATCH] shift NHL logos closer to center --- src/nhl_managers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nhl_managers.py b/src/nhl_managers.py index cbbfdeaa..1e15f437 100644 --- a/src/nhl_managers.py +++ b/src/nhl_managers.py @@ -426,14 +426,14 @@ class BaseNHLManager: center_y = self.display_height // 2 # Draw home team logo (far right, extending beyond screen) - home_x = self.display_width - home_logo.width + 12 # Shifted in by 3 pixels (from 15 to 12) + home_x = self.display_width - home_logo.width home_y = center_y - (home_logo.height // 2) # Paste the home logo onto the overlay overlay.paste(home_logo, (home_x, home_y), home_logo) # Draw away team logo (far left, extending beyond screen) - away_x = -12 # Shifted in by 3 pixels (from -15 to -12) + away_x = 0 away_y = center_y - (away_logo.height // 2) # Paste the away logo onto the overlay