mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-11 21:33:00 +00:00
fix scroll position
This commit is contained in:
@@ -36,7 +36,7 @@ class OddsTickerManager:
|
|||||||
|
|
||||||
# State variables
|
# State variables
|
||||||
self.last_update = 0
|
self.last_update = 0
|
||||||
self.current_position = 0
|
self.scroll_position = 0
|
||||||
self.last_scroll_time = 0
|
self.last_scroll_time = 0
|
||||||
self.games_data = []
|
self.games_data = []
|
||||||
self.current_game_index = 0
|
self.current_game_index = 0
|
||||||
@@ -534,7 +534,7 @@ class OddsTickerManager:
|
|||||||
# Check if it's time to switch games
|
# Check if it's time to switch games
|
||||||
if current_time - self.last_display_time >= self.display_duration:
|
if current_time - self.last_display_time >= self.display_duration:
|
||||||
self.current_game_index = (self.current_game_index + 1) % len(self.games_data)
|
self.current_game_index = (self.current_game_index + 1) % len(self.games_data)
|
||||||
self.current_position = 0
|
self.scroll_position = 0
|
||||||
self.last_display_time = current_time
|
self.last_display_time = current_time
|
||||||
self.current_image = None # Force recreate image
|
self.current_image = None # Force recreate image
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user