From 15eb63a634ade02665edef6f69fd33e66895f302 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 11 Apr 2025 12:31:48 -0500 Subject: [PATCH] Shift chart one width to the right in stock display --- 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 0a5d8bb2..a7dfbd29 100644 --- a/src/stock_manager.py +++ b/src/stock_manager.py @@ -357,7 +357,7 @@ class StockManager: # Draw mini chart on the right chart_width = 30 # Increased from 20 to 30 chart_height = 32 # Increased from 32 to match text height - chart_x = width - chart_width - 5 # 5px padding from right edge + chart_x = scroll_width - chart_width - 5 # Shift one width to the right (using scroll_width instead of width) chart_y = 0 # Align with top of display # Draw chart background