adjust score spacing soccer

This commit is contained in:
Chuck
2025-08-09 20:21:35 -05:00
parent 6fdb2b55b5
commit 29f36827ca

View File

@@ -646,7 +646,7 @@ class BaseSoccerManager:
# Live/Final: Show Score centered vertically, Status top center
home_score = str(game.get("home_score", "0"))
away_score = str(game.get("away_score", "0"))
score_text = f"{away_score} - {home_score}"
score_text = f"{away_score}-{home_score}"
score_width = draw.textlength(score_text, font=score_font)
score_x = center_x - score_width // 2