adjustments in Display scheduling to fix blank screen after re-activated

This commit is contained in:
Chuck
2025-07-09 07:35:27 -05:00
parent b3dc4f696c
commit 21773cd948
2 changed files with 1 additions and 2 deletions

View File

@@ -752,6 +752,7 @@ class DisplayController:
if should_be_active and not self.is_display_active:
logger.info("Within scheduled time. Activating display.")
self.is_display_active = True
self.force_clear = True # Force a redraw
elif not should_be_active and self.is_display_active:
logger.info("Outside of scheduled time. Deactivating display.")
self.display_manager.clear()