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