From c68cb240b57d0571ce9a7f7431f26f6df332c17e Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Wed, 18 Jun 2025 09:17:51 -0500 Subject: [PATCH] slightly enlarge MILB logos to be more readable --- src/milb_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/milb_manager.py b/src/milb_manager.py index cc670cce..16d8a7db 100644 --- a/src/milb_manager.py +++ b/src/milb_manager.py @@ -140,8 +140,8 @@ class BaseMiLBManager: image = Image.new('RGB', (width, height), color=(0, 0, 0)) # Make logos 120% of display dimensions to allow them to extend off screen - max_width = int(width * 1.2) - max_height = int(height * 1.2) + max_width = int(width * 1.3) + max_height = int(height * 1.3) # Load team logos away_logo = self._get_team_logo(game_data['away_team'])