Skip to content

Commit 1e98533

Browse files
authored
Merge pull request #11 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents 02abe87 + 7da32bd commit 1e98533

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/ssd1325_simpletest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
display = adafruit_ssd1325.SSD1325(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(display.width, display.height, 1)
@@ -60,7 +60,6 @@
6060
text_area = label.Label(terminalio.FONT, text=text, color=0x888888)
6161
text_width = text_area.bounding_box[2] * FONTSCALE
6262
text_group = displayio.Group(
63-
max_size=10,
6463
scale=FONTSCALE,
6564
x=display.width // 2 - text_width // 2,
6665
y=display.height // 2,

0 commit comments

Comments
 (0)