Skip to content

Commit b7138b4

Browse files
committed
increased max_glyphs to 9 for time_text
1 parent 545c236 commit b7138b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PyPortal_OpenWeather/openweather_graphics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __init__(self, root_group, *, am_pm=True, celsius=True):
3636
self.large_font.load_glyphs(('°',)) # a non-ascii character we need for sure
3737
self.city_text = None
3838

39-
self.time_text = Label(self.medium_font, max_glyphs=8)
39+
self.time_text = Label(self.medium_font, max_glyphs=9)
4040
self.time_text.x = 200
4141
self.time_text.y = 12
4242
self.time_text.color = 0xFFFFFF

0 commit comments

Comments
 (0)