mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-12 05:42:59 +00:00
Display Manager improvements: 1) Use existing calendar_font in _draw_bdf_text method 2) Remove redundant Face object creation
This commit is contained in:
@@ -143,7 +143,8 @@ class DisplayManager:
|
|||||||
def _draw_bdf_text(self, text, x, y, color=(255, 255, 255)):
|
def _draw_bdf_text(self, text, x, y, color=(255, 255, 255)):
|
||||||
"""Draw text using BDF font with proper bitmap handling."""
|
"""Draw text using BDF font with proper bitmap handling."""
|
||||||
try:
|
try:
|
||||||
face = freetype.Face(self.calendar_font_path)
|
# Use the existing calendar_font instead of creating a new Face
|
||||||
|
face = self.calendar_font
|
||||||
|
|
||||||
for char in text:
|
for char in text:
|
||||||
face.load_char(char)
|
face.load_char(char)
|
||||||
|
|||||||
Reference in New Issue
Block a user