We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 02abe87 + 7da32bd commit 1e98533Copy full SHA for 1e98533
examples/ssd1325_simpletest.py
@@ -34,7 +34,7 @@
34
display = adafruit_ssd1325.SSD1325(display_bus, width=WIDTH, height=HEIGHT)
35
36
# Make the display context
37
-splash = displayio.Group(max_size=10)
+splash = displayio.Group()
38
display.show(splash)
39
40
color_bitmap = displayio.Bitmap(display.width, display.height, 1)
@@ -60,7 +60,6 @@
60
text_area = label.Label(terminalio.FONT, text=text, color=0x888888)
61
text_width = text_area.bounding_box[2] * FONTSCALE
62
text_group = displayio.Group(
63
- max_size=10,
64
scale=FONTSCALE,
65
x=display.width // 2 - text_width // 2,
66
y=display.height // 2,
0 commit comments