From 97a36e7d2bec626d4a7be1f0277405582d8edf70 Mon Sep 17 00:00:00 2001 From: James Carr Date: Sun, 4 Jul 2021 11:43:18 +0100 Subject: [PATCH] Remove max_size parameter --- README.rst | 2 +- examples/ssd1351_128x96_simpletest.py | 2 +- examples/ssd1351_simpletest.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 4e89054..eb97bbc 100644 --- a/README.rst +++ b/README.rst @@ -45,7 +45,7 @@ Usage Example display = SSD1351(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/ssd1351_128x96_simpletest.py b/examples/ssd1351_128x96_simpletest.py index 191f1e2..c7631e7 100644 --- a/examples/ssd1351_128x96_simpletest.py +++ b/examples/ssd1351_128x96_simpletest.py @@ -26,7 +26,7 @@ display = SSD1351(display_bus, width=128, height=96) # Make the display context -splash = displayio.Group(max_size=10) +splash = displayio.Group() display.show(splash) color_bitmap = displayio.Bitmap(128, 96, 1) diff --git a/examples/ssd1351_simpletest.py b/examples/ssd1351_simpletest.py index 98ea577..dcd8a1b 100644 --- a/examples/ssd1351_simpletest.py +++ b/examples/ssd1351_simpletest.py @@ -26,7 +26,7 @@ display = SSD1351(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)