From dfff7ee691a6d2f5f4619127c04be8a1b46fe6f3 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 11 Apr 2025 11:43:26 -0500 Subject: [PATCH] Remove delay from stock ticker to match news ticker's smooth scrolling --- src/display_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display_controller.py b/src/display_controller.py index 51dd3167..96c5f3d9 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -141,8 +141,8 @@ class DisplayController: self.weather.display_daily_forecast(force_clear=self.force_clear) time.sleep(self.update_interval) elif self.current_display == 'stocks' and self.stocks: + # For stocks, we want to update as fast as possible without delay self.stocks.display_stocks(force_clear=self.force_clear) - time.sleep(self.update_interval) elif self.current_display == 'stock_news' and self.news: # For news, we want to update as fast as possible without delay self.news.display_news()