From 87c9c23807d4af0a5bdcc2c8b25c1f54aa265c82 Mon Sep 17 00:00:00 2001 From: Paulchen Panther Date: Thu, 20 Dec 2018 15:12:45 +0100 Subject: [PATCH] emit rawLedColors before transform --- libsrc/hyperion/Hyperion.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libsrc/hyperion/Hyperion.cpp b/libsrc/hyperion/Hyperion.cpp index 32dc9f0d..c626b7db 100644 --- a/libsrc/hyperion/Hyperion.cpp +++ b/libsrc/hyperion/Hyperion.cpp @@ -840,6 +840,9 @@ void Hyperion::update() _ledBuffer.reserve(_hwLedCount); _ledBuffer = priorityInfo.ledColors; + // emit rawLedColors before transform + emit rawLedColors(_ledBuffer); + if (priorityInfo.componentId != _prevCompId) { bool backlightEnabled = (priorityInfo.componentId != hyperion::COMP_COLOR && priorityInfo.componentId != hyperion::COMP_EFFECT);