# HG changeset patch # User drewp@bigasterisk.com # Date 2015-06-13 08:11:18 # Node ID 2591ae3e9e37aeaf051ca2b45b4929f78b9ffe1c # Parent ea2b23f598845f35389637b56f85bf1126cfaf68 just set both blacklights together Ignore-this: 6a576058f3c7d26cc5f7df2e0df031e2 diff --git a/light9/effecteval/effectloop.py b/light9/effecteval/effectloop.py --- a/light9/effecteval/effectloop.py +++ b/light9/effecteval/effectloop.py @@ -231,8 +231,10 @@ class LedLoop(EffectLoop): for out in outputs: log.debug('combine output %r', out) if isinstance(out, Effects.Blacklight): - key = 'blacklight%s' % out.which - combined[key] = max(combined[key], out) + # no picking yet + #key = 'blacklight%s' % out.which + for key in ['blacklight0', 'blacklight1']: + combined[key] = max(combined[key], out) elif isinstance(out, Effects.Strip): pixels = numpy.array(out.pixels, dtype=numpy.float16) for w in out.which: