diff --git a/README.rst b/README.rst index 9ca1fe8..1c76b3f 100644 --- a/README.rst +++ b/README.rst @@ -56,7 +56,7 @@ Usage Example display = GC9A01(display_bus, width=240, height=240) # Make the display context - splash = displayio.Group(max_size=10) + splash = displayio.Group() display.show(splash) color_bitmap = displayio.Bitmap(240, 240, 1) diff --git a/examples/gc9a01_simpletest.py b/examples/gc9a01_simpletest.py index 29fc37b..f2f6a73 100644 --- a/examples/gc9a01_simpletest.py +++ b/examples/gc9a01_simpletest.py @@ -22,7 +22,7 @@ display = GC9A01(display_bus, width=240, height=240) # Make the display context -splash = displayio.Group(max_size=10) +splash = displayio.Group() display.show(splash) color_bitmap = displayio.Bitmap(240, 240, 1)