Skip to content

Commit 7c475ac

Browse files
authored
Merge pull request #2 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents a28dee9 + 30eb2d5 commit 7c475ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

adafruit_dash_display.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def __init__(self, display, io, nav):
136136

137137
self.display.show(None)
138138

139-
self.splash = displayio.Group(max_size=25)
139+
self.splash = displayio.Group()
140140

141141
self.rect = Rect(0, 0, 240, 30, fill=0xFFFFFF)
142142
self.splash.append(self.rect)

examples/client_examples/battery_daughter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def message(client, feed_id, payload):
9494

9595
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=WIDTH, height=HEIGHT)
9696

97-
splash = displayio.Group(max_size=10)
97+
splash = displayio.Group()
9898
display.show(splash)
9999

100100
digital_label = label.Label(

examples/dash_display_advancedtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
print("WiFi secrets are kept in secrets.py, please add them there!")
3737
raise
3838

39-
rgb_group = displayio.Group(max_size=9)
39+
rgb_group = displayio.Group()
4040
R_label = Label(
4141
terminalio.FONT,
4242
text=" +\nR:\n -",

0 commit comments

Comments
 (0)