Skip to content

Commit 9855e34

Browse files
committed
Fix allowing text only display
1 parent 0194577 commit 9855e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_portalbase/graphics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ def __init__(self, display, *, default_bg=0x000000, scale=1, debug=False):
5555
self._bg_group = displayio.Group(max_size=1)
5656
self._bg_file = None
5757
self.splash.append(self._bg_group)
58-
self.display.show(self.splash)
5958

6059
# set the default background
6160
if default_bg is not None:
61+
self.display.show(self.splash)
6262
self.set_background(default_bg)
6363

6464
gc.collect()

0 commit comments

Comments
 (0)