From a356bfeaa17a1fd032a6880eb3e8717a6553575f Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 1 May 2025 20:52:51 -0500 Subject: [PATCH] adjust NFL Live scorebug positioning --- src/nfl_managers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nfl_managers.py b/src/nfl_managers.py index c520b70b..e4378cfe 100644 --- a/src/nfl_managers.py +++ b/src/nfl_managers.py @@ -639,7 +639,7 @@ class NFLLiveManager(BaseNFLManager): # Renamed class if down_distance and game.get("is_live"): # Only show if live and available dd_width = draw_overlay.textlength(down_distance, font=self.fonts['detail']) dd_x = (self.display_width - dd_width) // 2 - dd_y = self.display_height #score_y + 12 # Below the status/clock line + dd_y = (self.display_height)- 7 #score_y + 12 # Below the status/clock line self._draw_text_with_outline(draw_overlay, down_distance, (dd_x, dd_y), self.fonts['detail'], fill=(200, 200, 0)) # Yellowish text # Timeouts (Bottom corners) - 3 small bars per team