From d1e81aea32b979dbfc36daead0a291cd78e1603c Mon Sep 17 00:00:00 2001 From: James Carr Date: Wed, 4 Aug 2021 08:18:59 +0100 Subject: [PATCH] Remove max_glyphs usage with Display_Text Label --- PyPortal_EventCountdown/eventcountdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyPortal_EventCountdown/eventcountdown.py b/PyPortal_EventCountdown/eventcountdown.py index 8ea0739e7..af1890524 100644 --- a/PyPortal_EventCountdown/eventcountdown.py +++ b/PyPortal_EventCountdown/eventcountdown.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