Skip to content

Commit 8b1d7dc

Browse files
authored
Merge pull request #16 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents 84b76bb + 97a36e7 commit 8b1d7dc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Usage Example
4545
display = SSD1351(display_bus, width=128, height=128)
4646
4747
# Make the display context
48-
splash = displayio.Group(max_size=10)
48+
splash = displayio.Group()
4949
display.show(splash)
5050
5151
color_bitmap = displayio.Bitmap(128, 128, 1)

examples/ssd1351_128x96_simpletest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
display = SSD1351(display_bus, width=128, height=96)
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(128, 96, 1)

examples/ssd1351_simpletest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
display = SSD1351(display_bus, width=128, height=128)
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(128, 128, 1)

0 commit comments

Comments
 (0)