diff --git a/README.rst b/README.rst index f66797e..f8e1f51 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,7 @@ Usage Example display = ST7735(display_bus, width=128, height=128) # Make the display context - splash = displayio.Group(max_size=10) + splash = displayio.Group() display.show(splash) color_bitmap = displayio.Bitmap(128, 128, 1) diff --git a/examples/st7735_simpletest.py b/examples/st7735_simpletest.py index 9971f90..9b970f1 100644 --- a/examples/st7735_simpletest.py +++ b/examples/st7735_simpletest.py @@ -24,7 +24,7 @@ display = ST7735(display_bus, width=128, height=128) # Make the display context -splash = displayio.Group(max_size=10) +splash = displayio.Group() display.show(splash) color_bitmap = displayio.Bitmap(128, 128, 1)