Skip to content

Commit

Permalink
Merge pull request #19 from prcutler/root-group-fix
Browse files Browse the repository at this point in the history
Update root_group for CP9 compatibility
  • Loading branch information
dhalbert authored Nov 3, 2023
2 parents e74965e + 6665404 commit 278d4ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/hx8357_pitft_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

# Make the display context
splash = displayio.Group()
display.show(splash)
display.root_group = splash

color_bitmap = displayio.Bitmap(display.width, display.height, 1)
color_palette = displayio.Palette(1)
Expand Down
2 changes: 1 addition & 1 deletion examples/hx8357_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

# Make the display context
splash = displayio.Group()
display.show(splash)
display.root_group = splash

color_bitmap = displayio.Bitmap(480, 320, 1)
color_palette = displayio.Palette(1)
Expand Down

0 comments on commit 278d4ce

Please sign in to comment.