From 34903dd9791a59ab1f44578bd1cc5b97ed6cafd6 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Sun, 27 Jul 2025 13:03:57 -0500 Subject: [PATCH] Scroll delay check --- src/news_manager.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/news_manager.py b/src/news_manager.py index 7f563492..7e8438b0 100644 --- a/src/news_manager.py +++ b/src/news_manager.py @@ -521,5 +521,6 @@ class NewsManager: def get_dynamic_duration(self) -> int: """Get the calculated dynamic duration for display""" - # Return the current calculated duration without fetching data - return self.dynamic_duration \ No newline at end of file + # For smooth scrolling, use a fixed short duration so display controller calls us frequently + # This allows the scroll_delay to control the actual scrolling speed + return 1 # 1 second duration - display controller will call us every second \ No newline at end of file