odds ticker display changes

This commit is contained in:
Chuck
2025-07-21 14:39:52 -05:00
parent 0df72c81cc
commit 7464244dfa
2 changed files with 2 additions and 2 deletions

View File

@@ -110,7 +110,7 @@
"odds_ticker": {
"enabled": true,
"show_favorite_teams_only": true,
"enabled_leagues": ["mlb"],
"enabled_leagues": ["mlb", "nfl", "ncaa_fb"],
"update_interval": 3600,
"scroll_speed": 1,
"scroll_delay": 0.01

View File

@@ -564,7 +564,7 @@ class OddsTickerManager:
if self.ticker_image and self.scroll_speed > 0 and self.scroll_delay > 0:
# Duration for the ticker to scroll its full width
self.dynamic_display_duration = (self.ticker_image.width / self.scroll_speed) * self.scroll_delay
logger.info(f"Calculated dynamic display duration: {self.dynamic_display_duration:.2f} seconds for a width of {self.ticker_image.width}px")
logger.info(f"[OddsTickerManager] Calculated dynamic display duration: {self.dynamic_display_duration:.2f} seconds for a width of {self.ticker_image.width}px, scroll_speed={self.scroll_speed}, scroll_delay={self.scroll_delay}")
else:
# Fallback to the configured duration if something is wrong
self.dynamic_display_duration = self.display_duration