blc - Simple program for rendering QLC+ workspaces properly/without crashing. Developed into BLC2.

git clone https://benconnors.ca/git-repos/blc

About | Log | Files | Refs

commit a51746f63d5c55c03cee4e95a36129fe86b53b14
parent f36b02ce4917bddb46fe4737409ad379310fe81e
Author: Ben Connors <benconnors@outlook.com>
Date:   Fri, 22 Feb 2019 15:35:23 -0500

Fix Show render_all

- Nest the render in a tuple to match with Chaser

Diffstat:
Mblc/workspace.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/blc/workspace.py b/blc/workspace.py @@ -810,7 +810,7 @@ class Show(Function, PreRenderable): vals, tacues, nx, data = self.render(t, data=data) for c,v in vals: if t == 0 or current[c] != v: - changes.append((c.address, v)) + changes.append((c, v)) current[c] = v if changes: cues.append((t,tuple(changes)))