Skip to content

Commit

Permalink
Merge pull request #51 from adafruit/dhalbert-patch-1
Browse files Browse the repository at this point in the history
Missed one .show(...)
  • Loading branch information
makermelissa committed Nov 9, 2023
2 parents 3e018c2 + 50725db commit 58115aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_macropad.py
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ def display_image(
if not position:
position = (0, 0)
group = displayio.Group(scale=1)
self.display.show(group)
self.display.root_group = group
with open(file_name, "rb") as image_file:
background = displayio.OnDiskBitmap(image_file)
sprite = displayio.TileGrid(
Expand Down

0 comments on commit 58115aa

Please sign in to comment.