From 720c44106d9d24402d08f88a2651d48f51d0036b Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 17 Apr 2025 21:41:26 -0500 Subject: [PATCH] Update stock_news_manager.py added gap before headline 1 in stock_news_manager to reinforce the scroll effect --- src/stock_news_manager.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stock_news_manager.py b/src/stock_news_manager.py index 3802496b..0252f049 100644 --- a/src/stock_news_manager.py +++ b/src/stock_news_manager.py @@ -210,6 +210,9 @@ class StockNewsManager: current_x = 0 screen_width_gap = width # Use a full screen width as the gap + # Add initial gap before the first headline + current_x += screen_width_gap + actual_total_width = 0 for news in all_news: news_text = f"{news['symbol']}: {news['title']} "