From 5aa9edc1cd1bcac40f68eefb514a99197b7b5794 Mon Sep 17 00:00:00 2001 From: redPanther Date: Fri, 30 Sep 2016 19:26:31 +0200 Subject: [PATCH] fix input selection wont work when color is set (#259) --- libsrc/hyperion/Hyperion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/hyperion/Hyperion.cpp b/libsrc/hyperion/Hyperion.cpp index 99986302..0f78c4b8 100644 --- a/libsrc/hyperion/Hyperion.cpp +++ b/libsrc/hyperion/Hyperion.cpp @@ -828,7 +828,7 @@ void Hyperion::setColors(int priority, const std::vector& ledColors, c _muxer.setInput(priority, ledColors); } - if (priority == _muxer.getCurrentPriority()) + if (! _sourceAutoSelectEnabled || priority == _muxer.getCurrentPriority()) { update(); }