Skip to content

Commit b05aa54

Browse files
committed
pyportal quarantine clock cp7 updates
1 parent bd7536a commit b05aa54

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

PyPortal_Quarantine_Clock/code.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@
7474
font_small.load_glyphs(b'abcdefghjiklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890- ()')
7575

7676
# Set up label for the day
77-
label_day = label.Label(font_large, color=LABEL_DAY_COLOR, max_glyphs=200)
77+
label_day = label.Label(font_large, color=LABEL_DAY_COLOR)
7878
label_day.x = board.DISPLAY.width // 7
7979
label_day.y = 80
8080
pyportal.splash.append(label_day)
8181

8282
# Set up label for the time
83-
label_time = label.Label(font_small, color=LABEL_TIME_COLOR, max_glyphs=200)
83+
label_time = label.Label(font_small, color=LABEL_TIME_COLOR)
8484
label_time.x = board.DISPLAY.width // 4
8585
label_time.y = 150
8686
pyportal.splash.append(label_time)

PyPortal_Quarantine_Clock/month_clock.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@
9494
font_small.load_glyphs(b'abcdefghjiklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890- ()')
9595

9696
# Set up label for the month
97-
label_month = label.Label(font_large, color=LABEL_DAY_COLOR, max_glyphs=200)
97+
label_month = label.Label(font_large, color=LABEL_DAY_COLOR)
9898
label_month.x = board.DISPLAY.width // 10
9999
label_month.y = 80
100100
pyportal.splash.append(label_month)
101101

102102
# Set up label for the time
103-
label_time = label.Label(font_small, color=LABEL_TIME_COLOR, max_glyphs=200)
103+
label_time = label.Label(font_small, color=LABEL_TIME_COLOR)
104104
label_time.x = board.DISPLAY.width // 3
105105
label_time.y = 150
106106
pyportal.splash.append(label_time)

0 commit comments

Comments
 (0)