From 22f0e293150131f4fa5f0817a8302d00fb9d6368 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 12 Sep 2025 17:45:52 -0400 Subject: [PATCH] leaderboard spacing calculation update --- src/leaderboard_manager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/leaderboard_manager.py b/src/leaderboard_manager.py index 918d9851..8f95849e 100644 --- a/src/leaderboard_manager.py +++ b/src/leaderboard_manager.py @@ -910,9 +910,9 @@ class LeaderboardManager: # Move to next team position team_x += team_width - # Move to next league section - current_x += teams_width + 20 # Teams width + spacing - # Note: spacing between leagues is already included in total_width calculation + # Move to next league section (match width calculation logic) + # current_x is currently at end of teams, need to add remaining spacing to next league start + current_x += spacing # Add spacing between leagues # Set total scroll width for dynamic duration calculation self.total_scroll_width = total_width