From 6271979fae4e8151b0f2c1f3cbf3f9ea6b4a9cd4 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 24 Apr 2025 15:42:41 -0500 Subject: [PATCH] removed 4 px margin from stock chat --- 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 11026d4d..71c89e18 100644 --- a/src/stock_manager.py +++ b/src/stock_manager.py @@ -479,7 +479,7 @@ class StockManager: # Calculate chart dimensions chart_width = int(width // 2.5) # Reduced from width//2.5 to prevent overlap chart_height = height // 1.5 - chart_x = width - chart_width - 4 # 4px margin from right edge + chart_x = width - chart_width # - 4 # 4px margin from right edge chart_y = (height - chart_height) // 2 # Find min and max prices for scaling