fix input selection wont work when color is set (#259)

This commit is contained in:
redPanther 2016-09-30 19:26:31 +02:00 committed by GitHub
parent 6a26e4fd5f
commit 5aa9edc1cd

View File

@ -828,7 +828,7 @@ void Hyperion::setColors(int priority, const std::vector<ColorRgb>& ledColors, c
_muxer.setInput(priority, ledColors);
}
if (priority == _muxer.getCurrentPriority())
if (! _sourceAutoSelectEnabled || priority == _muxer.getCurrentPriority())
{
update();
}