From a2422cd507539242bed19005d28ed13c8d626384 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Wed, 23 Apr 2025 17:49:42 -0500 Subject: [PATCH] adjusted column_x width to 2.85 from 2.8 --- src/stock_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stock_manager.py b/src/stock_manager.py index a6ab3e98..55a13609 100644 --- a/src/stock_manager.py +++ b/src/stock_manager.py @@ -450,7 +450,7 @@ class StockManager: start_y = (height - total_text_height) // 2 # Calculate center x position for the column - column_x = width // 2.8 + column_x = width // 2.85 # Draw symbol symbol_width = symbol_bbox[2] - symbol_bbox[0] symbol_x = column_x - (symbol_width // 2)