Skip to content

Commit b5fa7a2

Browse files
authored
Merge pull request #15 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents 9d193aa + bdbbed9 commit b5fa7a2

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
@@ -52,7 +52,7 @@ Usage Example
5252
display = ST7735(display_bus, width=128, height=128)
5353
5454
# Make the display context
55-
splash = displayio.Group(max_size=10)
55+
splash = displayio.Group()
5656
display.show(splash)
5757
5858
color_bitmap = displayio.Bitmap(128, 128, 1)

examples/st7735_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
display = ST7735(display_bus, width=128, height=128)
2525

2626
# Make the display context
27-
splash = displayio.Group(max_size=10)
27+
splash = displayio.Group()
2828
display.show(splash)
2929

3030
color_bitmap = displayio.Bitmap(128, 128, 1)

0 commit comments

Comments
 (0)