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 59d35eb + f02278a commit 5fdc8f6Copy full SHA for 5fdc8f6
examples/ssd1327_simpletest.py
@@ -29,7 +29,7 @@
29
display = adafruit_ssd1327.SSD1327(display_bus, width=WIDTH, height=HEIGHT)
30
31
# Make the display context
32
-splash = displayio.Group(max_size=10)
+splash = displayio.Group()
33
display.show(splash)
34
35
# Draw a background rectangle, but not the full display size
@@ -59,7 +59,6 @@
59
text_area = label.Label(terminalio.FONT, text=text, color=0xFFFFFF)
60
text_width = text_area.bounding_box[2] * FONTSCALE
61
text_group = displayio.Group(
62
- max_size=10,
63
scale=FONTSCALE,
64
x=display.width // 2 - text_width // 2,
65
y=display.height // 2,
0 commit comments