From 678275372871e7c1b37bc9bcdd4dc2d48850cc85 Mon Sep 17 00:00:00 2001 From: James Carr Date: Tue, 3 Aug 2021 16:40:50 +0100 Subject: [PATCH] Remove max_glyphs usage with Display_Text Label --- PyPortal_CircuitPython_2020/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyPortal_CircuitPython_2020/code.py b/PyPortal_CircuitPython_2020/code.py index 95e78dd33..057932bfe 100644 --- a/PyPortal_CircuitPython_2020/code.py +++ b/PyPortal_CircuitPython_2020/code.py @@ -39,7 +39,7 @@ text_areas = [] for pos in (days_position, hours_position, minutes_position): - textarea = Label(big_font, max_glyphs=3) + textarea = Label(big_font) textarea.x = pos[0] textarea.y = pos[1] textarea.color = text_color