From ebc8baa7d824d4eebf44e3c7312bf73c1d8b93d1 Mon Sep 17 00:00:00 2001 From: Josuah Demangeon Date: Tue, 30 May 2023 13:35:17 -0400 Subject: [PATCH] hotfix: missing .vgr2d() in display.py --- modules/display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/display.py b/modules/display.py index dcdf9eea..5551a5a1 100644 --- a/modules/display.py +++ b/modules/display.py @@ -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):