From 2af78a37d51eb6f183bb8482592e79af7e4bb9b5 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Wed, 23 Jul 2025 14:36:35 -0500 Subject: [PATCH] fix bdf drawing in other displays relying on display manager --- src/display_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display_manager.py b/src/display_manager.py index 80e6016c..97e55723 100644 --- a/src/display_manager.py +++ b/src/display_manager.py @@ -163,7 +163,7 @@ class DisplayManager: if byte & (1 << (7 - (j % 8))): # Calculate actual pixel position pixel_x = x + glyph_left + j - pixel_y = y + glyph_top - i + pixel_y = y - glyph_top + i # Only draw if within bounds if (0 <= pixel_x < self.matrix.width and 0 <= pixel_y < self.matrix.height):