Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove max_size parameter
  • Loading branch information
lesamouraipourpre committed Jul 4, 2021
commit 954c712839b1878ee61578627ec51fc6ce41fb14
2 changes: 1 addition & 1 deletion examples/displayio_ssd1306_featherwing.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=128, height=32)

# Make the display context
splash = displayio.Group(max_size=10)
splash = displayio.Group()
display.show(splash)

color_bitmap = displayio.Bitmap(128, 32, 1)
Expand Down
2 changes: 1 addition & 1 deletion examples/displayio_ssd1306_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=WIDTH, height=HEIGHT)

# Make the display context
splash = displayio.Group(max_size=10)
splash = displayio.Group()
display.show(splash)

color_bitmap = displayio.Bitmap(WIDTH, HEIGHT, 1)
Expand Down