From 31e19f7dc08c9cad633102aad68426a2272fdc87 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 25 Apr 2025 14:53:00 -0500 Subject: [PATCH] style: Increase vertical space above count indicator in live MLB display --- src/mlb_manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mlb_manager.py b/src/mlb_manager.py index 8223eebf..fd39a398 100644 --- a/src/mlb_manager.py +++ b/src/mlb_manager.py @@ -600,7 +600,8 @@ class MLBLiveManager(BaseMLBManager): bases_overall_bottom_y = c1y + h_d # Bottom of the 1st/3rd base diamonds # --- Draw Count (Circles) --- - count_start_y = bases_overall_bottom_y + vertical_spacing + count_vertical_offset = 3 # Increase space below bases + count_start_y = bases_overall_bottom_y + count_vertical_offset count_start_x = cluster_start_x + (cluster_width - count_cluster_width) // 2 circle_color_ball = (255, 255, 255) circle_color_strike = (255, 255, 255) # Outline color