fix: prevent calendar display flashing by removing unnecessary delay and improving display update logic

This commit is contained in:
ChuckBuilds
2025-04-22 10:35:29 -05:00
parent 792bca625f
commit aa4ccf5bb3
2 changed files with 13 additions and 13 deletions

View File

@@ -372,7 +372,7 @@ class DisplayController:
self.news.display_news()
elif self.current_display_mode == 'calendar' and self.calendar:
self.calendar.display()
self.calendar.display(force_clear=self.force_clear)
elif self.current_display_mode == 'nhl_recent' and self.nhl_recent:
self.nhl_recent.display(force_clear=self.force_clear)