From c2a5cab122c46cd0b644ddef6156e20fa34f255a Mon Sep 17 00:00:00 2001 From: James Carr Date: Sun, 4 Jul 2021 11:33:43 +0100 Subject: [PATCH] Remove max_size parameter --- README.rst | 2 +- examples/ssd1331_simpletest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)