Skip to content

Commit 1441567

Browse files
authored
Merge pull request #14 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents df412a7 + c2a5cab commit 1441567

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
@@ -47,7 +47,7 @@ Usage Example
4747
display = SSD1331(display_bus, width=96, height=64)
4848
4949
# Make the display context
50-
splash = displayio.Group(max_size=10)
50+
splash = displayio.Group()
5151
display.show(splash)
5252
5353
color_bitmap = displayio.Bitmap(96, 64, 1)

examples/ssd1331_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
display = SSD1331(display_bus, width=96, height=64)
2727

2828
# Make the display context
29-
splash = displayio.Group(max_size=10)
29+
splash = displayio.Group()
3030
display.show(splash)
3131

3232
color_bitmap = displayio.Bitmap(96, 64, 1)

0 commit comments

Comments
 (0)