Skip to content

Commit 58115aa

Browse files
authored
Merge pull request #51 from adafruit/dhalbert-patch-1
Missed one .show(...)
2 parents 3e018c2 + 50725db commit 58115aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_macropad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ def display_image(
865865
if not position:
866866
position = (0, 0)
867867
group = displayio.Group(scale=1)
868-
self.display.show(group)
868+
self.display.root_group = group
869869
with open(file_name, "rb") as image_file:
870870
background = displayio.OnDiskBitmap(image_file)
871871
sprite = displayio.TileGrid(

0 commit comments

Comments
 (0)