From b9d07ff962406dd62bc1f6d66ec6be0b0260c5f5 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Wed, 18 Jun 2025 09:30:10 -0500 Subject: [PATCH] noticed images for MILB had padding, messing up dynamic placement. Trying static placement --- src/milb_manager.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/milb_manager.py b/src/milb_manager.py index 5b3ef3fb..8f397333 100644 --- a/src/milb_manager.py +++ b/src/milb_manager.py @@ -159,14 +159,14 @@ class BaseMiLBManager: center_y = height // 2 # Draw home team logo (far right, extending beyond screen) - home_x = width - home_logo.width + 2 + home_x = width - home_logo.width + 18 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 = -2 + away_x = -18 away_y = center_y - (away_logo.height // 2) overlay.paste(away_logo, (away_x, away_y), away_logo) @@ -593,14 +593,14 @@ class MiLBLiveManager(BaseMiLBManager): center_y = height // 2 # Draw home team logo (far right, extending beyond screen) - home_x = width - home_logo.width + 2 + home_x = width - home_logo.width + 18 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 = -2 + away_x = -18 away_y = center_y - (away_logo.height // 2) overlay.paste(away_logo, (away_x, away_y), away_logo)