diff --git a/README.rst b/README.rst index 4f7620a..a9b7d88 100644 --- a/README.rst +++ b/README.rst @@ -47,7 +47,7 @@ Usage Example display = SSD1331(display_bus, width=96, height=64) # Make the display context - splash = displayio.Group(max_size=10) + splash = displayio.Group() display.show(splash) color_bitmap = displayio.Bitmap(96, 64, 1) diff --git a/examples/ssd1331_simpletest.py b/examples/ssd1331_simpletest.py index fc40d73..a5f2dd1 100644 --- a/examples/ssd1331_simpletest.py +++ b/examples/ssd1331_simpletest.py @@ -26,7 +26,7 @@ display = SSD1331(display_bus, width=96, height=64) # Make the display context -splash = displayio.Group(max_size=10) +splash = displayio.Group() display.show(splash) color_bitmap = displayio.Bitmap(96, 64, 1)