Skip to content

Commit

Permalink
Merge pull request #217 from brilliantlabsAR/hotfix
Browse files Browse the repository at this point in the history
hotfix: missing .vgr2d() in display.py
  • Loading branch information
siliconwitch authored May 30, 2023
2 parents cd03a7e + ebc8baa commit 1bd6dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def show_vgr2d(l):
# 0 is the address of the frame in the framebuffer in use.
# See https://streamlogic.io/docs/reify/nodes/#fbgraphics
# Offset: active display offset in buffer used if double buffering
vgr2d.display2d(0, l, WIDTH, HEIGHT)
vgr2d.display2d(0, [obj.vgr2d() for obj in l], WIDTH, HEIGHT)


def show(*args):
Expand Down

0 comments on commit 1bd6dee

Please sign in to comment.