Skip to content

Commit 5fdc8f6

Browse files
authored
Merge pull request #10 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents 59d35eb + f02278a commit 5fdc8f6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/ssd1327_simpletest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
display = adafruit_ssd1327.SSD1327(display_bus, width=WIDTH, height=HEIGHT)
3030

3131
# Make the display context
32-
splash = displayio.Group(max_size=10)
32+
splash = displayio.Group()
3333
display.show(splash)
3434

3535
# Draw a background rectangle, but not the full display size
@@ -59,7 +59,6 @@
5959
text_area = label.Label(terminalio.FONT, text=text, color=0xFFFFFF)
6060
text_width = text_area.bounding_box[2] * FONTSCALE
6161
text_group = displayio.Group(
62-
max_size=10,
6362
scale=FONTSCALE,
6463
x=display.width // 2 - text_width // 2,
6564
y=display.height // 2,

0 commit comments

Comments
 (0)