Skip to content

Commit ca9b927

Browse files
Remove max_size usage with displayio.Group
1 parent ddc4f95 commit ca9b927

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LED_Matrix_Scoreboard/code.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
display = framebufferio.FramebufferDisplay(matrix)
2727

2828
# display groups
29-
start_group = displayio.Group(max_size=30, scale=1)
30-
score_group = displayio.Group(max_size=30, scale=1)
29+
start_group = displayio.Group()
30+
score_group = displayio.Group()
3131

3232
# text & bg color setup for scoreboard
3333
score_text = " "

0 commit comments

Comments
 (0)