From b6975df112d16d14c53420a8c8b6d834f53bbfe7 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 1 May 2025 20:23:16 -0500 Subject: [PATCH] adjust NFL Live scorebug move score higher --- 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 4bd4be60..7c8b2d36 100644 --- a/src/nfl_managers.py +++ b/src/nfl_managers.py @@ -622,7 +622,7 @@ class NFLLiveManager(BaseNFLManager): # Renamed class score_text = f"{away_score}-{home_score}" score_width = draw_overlay.textlength(score_text, font=self.fonts['score']) score_x = (self.display_width - score_width) // 2 - score_y = self.display_height // 2 #centered #from 14 # Position score higher + score_y = (self.display_height // 2) - 5 #centered #from 14 # Position score higher self._draw_text_with_outline(draw_overlay, score_text, (score_x, score_y), self.fonts['score']) # Period/Quarter and Clock (Top center)