From b47c7ace1b75624b6d3f94abe1970b0ba1a1ec30 Mon Sep 17 00:00:00 2001 From: James Carr Date: Mon, 2 Aug 2021 23:04:57 +0100 Subject: [PATCH] Remove max_size usage with displayio.Group --- PyGamer_NeoPixel_Strip_Control/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyGamer_NeoPixel_Strip_Control/code.py b/PyGamer_NeoPixel_Strip_Control/code.py index bc173df00..fd3c7e138 100755 --- a/PyGamer_NeoPixel_Strip_Control/code.py +++ b/PyGamer_NeoPixel_Strip_Control/code.py @@ -21,7 +21,7 @@ display = board.DISPLAY # Create the display context -splash = displayio.Group(max_size=15) +splash = displayio.Group() # Button colors RED = (255, 0, 0)