Skip to content

Commit 6e4e65a

Browse files
Merge pull request #21 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents a7e4ce0 + 954c712 commit 6e4e65a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/displayio_ssd1306_featherwing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=128, height=32)
2020

2121
# Make the display context
22-
splash = displayio.Group(max_size=10)
22+
splash = displayio.Group()
2323
display.show(splash)
2424

2525
color_bitmap = displayio.Bitmap(128, 32, 1)

examples/displayio_ssd1306_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=WIDTH, height=HEIGHT)
3535

3636
# Make the display context
37-
splash = displayio.Group(max_size=10)
37+
splash = displayio.Group()
3838
display.show(splash)
3939

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

0 commit comments

Comments
 (0)