From 792bca625fd74e9cb495c801af2e088f690bda5d Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Tue, 22 Apr 2025 10:30:43 -0500 Subject: [PATCH] remove .1s sleep that slows down the scrolling --- src/display_controller.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/display_controller.py b/src/display_controller.py index 55097617..c24de9b3 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -392,8 +392,7 @@ class DisplayController: continue self.force_clear = False - # Add a small delay to prevent CPU overuse and ensure display stays visible - time.sleep(0.1) + except KeyboardInterrupt: logger.info("Display controller stopped by user")