Skip to content

Commit

Permalink
Missed one .show(...)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert committed Nov 9, 2023
1 parent 3e018c2 commit 50725db
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 50725db

Please sign in to comment.