Skip to content

Commit 24db6cc

Browse files
authored
Merge pull request #4 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents 4cb5bb3 + 50da3e6 commit 24db6cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Usage Example
9191
display = adafruit_displayio_sh1106.SH1106(display_bus, width=WIDTH, height=HEIGHT)
9292
9393
# Make the display context
94-
splash = displayio.Group(max_size=10)
94+
splash = displayio.Group()
9595
display.show(splash)
9696
9797
color_bitmap = displayio.Bitmap(WIDTH, HEIGHT, 1)

examples/displayio_sh1106_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
display = adafruit_displayio_sh1106.SH1106(display_bus, width=WIDTH, height=HEIGHT)
2828

2929
# Make the display context
30-
splash = displayio.Group(max_size=10)
30+
splash = displayio.Group()
3131
display.show(splash)
3232

3333
color_bitmap = displayio.Bitmap(WIDTH, HEIGHT, 1)

0 commit comments

Comments
 (0)