mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Fix bug: Only 1 EffectEngine allowed; SetColors implemented for EffectEngine
Former-commit-id: ae8141ebd530b7735ffa7818dc3c690913769070
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
|
||||
// QT includes
|
||||
#include <QDateTime>
|
||||
#include <QThread>
|
||||
|
||||
// JsonSchema include
|
||||
#include <utils/jsonschema/JsonFactory.h>
|
||||
@@ -392,10 +393,11 @@ void Hyperion::clear(int priority)
|
||||
{
|
||||
update();
|
||||
}
|
||||
|
||||
// send clear signal to the effect engine
|
||||
_effectEngine->channelCleared(priority);
|
||||
}
|
||||
|
||||
// send clear signal to the effect engine
|
||||
// (outside the check so the effect gets cleared even when the effect is not sending colors)
|
||||
_effectEngine->channelCleared(priority);
|
||||
}
|
||||
|
||||
void Hyperion::clearall()
|
||||
|
Reference in New Issue
Block a user