Skip to content

Commit

Permalink
Merge pull request #21 from lesamouraipourpre/max-size
Browse files Browse the repository at this point in the history
Remove max_size parameter
  • Loading branch information
jposada202020 committed Jul 6, 2021
2 parents a7e4ce0 + 954c712 commit 6e4e65a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 6e4e65a

Please sign in to comment.