@limon While I can appreciate where you're coming from, I tend to think that level of information is probably going to over-complicate this feature request as you're talking about dynamically generating colors based on evaluating the state of all outputs and their associated channels.
I've just been pushing for a simple boolean to get us to a better place. Essentially.... for channel in output:
if channel.connected():
output_ui.highlight = True
break()
@limon While I can appreciate where you're coming from, I tend to think that level of information is probably going to over-complicate this feature request as you're talking about dynamically generating colors based on evaluating the state of all outputs and their associated channels.
I've just been pushing for a simple boolean to get us to a better place. Essentially....
for channel in output:
if channel.connected():
output_ui.highlight = True
break()
^ silly gross simplification