Skip to content

Commit

Permalink
Merge pull request #15 from lesamouraipourpre/max-size
Browse files Browse the repository at this point in the history
Remove max_size parameter
  • Loading branch information
tannewt authored Jul 8, 2021
2 parents 9d193aa + bdbbed9 commit b5fa7a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Usage Example
display = ST7735(display_bus, width=128, height=128)
# Make the display context
splash = displayio.Group(max_size=10)
splash = displayio.Group()
display.show(splash)
color_bitmap = displayio.Bitmap(128, 128, 1)
Expand Down
2 changes: 1 addition & 1 deletion examples/st7735_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
display = ST7735(display_bus, width=128, height=128)

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

color_bitmap = displayio.Bitmap(128, 128, 1)
Expand Down

0 comments on commit b5fa7a2

Please sign in to comment.