Display Manager: Remove automatic display update from draw_text to prevent flickering

This commit is contained in:
ChuckBuilds
2025-04-25 10:49:18 -05:00
parent c1bac62d91
commit b603494973

View File

@@ -265,9 +265,6 @@ class DisplayManager:
# For TTF fonts, use PIL's text drawing
self.draw.text((x, y), text, font=current_font, fill=color)
# Update the display to show the text
self.update_display()
except Exception as e:
logger.error(f"Error drawing text: {e}", exc_info=True)