Skip to content

Commit 6ffe103

Browse files
authored
Merge pull request #42 from lesamouraipourpre/max-size
Remove max_size parameter
2 parents 60c9181 + 3a19ef8 commit 6ffe103

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

adafruit_portalbase/__init__.py

100755100644
File mode changed.

adafruit_portalbase/graphics.py

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ def __init__(self, display, *, default_bg=0x000000, scale=1, debug=False):
4848

4949
if self._debug:
5050
print("Init display")
51-
self.splash = displayio.Group(max_size=15, scale=scale)
51+
self.splash = displayio.Group(scale=scale)
5252
self._qr_group = None
5353
if self._debug:
5454
print("Init background")
55-
self._bg_group = displayio.Group(max_size=1)
55+
self._bg_group = displayio.Group()
5656
self._bg_file = None
5757
self.splash.append(self._bg_group)
5858

adafruit_portalbase/network.py

100755100644
File mode changed.

adafruit_portalbase/wifi_coprocessor.py

100755100644
File mode changed.

adafruit_portalbase/wifi_esp32s2.py

100755100644
File mode changed.

0 commit comments

Comments
 (0)