emit rawLedColors before transform

This commit is contained in:
Paulchen Panther
2018-12-20 15:12:45 +01:00
committed by GitHub
parent 669501a084
commit 87c9c23807

View File

@@ -840,6 +840,9 @@ void Hyperion::update()
_ledBuffer.reserve(_hwLedCount); _ledBuffer.reserve(_hwLedCount);
_ledBuffer = priorityInfo.ledColors; _ledBuffer = priorityInfo.ledColors;
// emit rawLedColors before transform
emit rawLedColors(_ledBuffer);
if (priorityInfo.componentId != _prevCompId) if (priorityInfo.componentId != _prevCompId)
{ {
bool backlightEnabled = (priorityInfo.componentId != hyperion::COMP_COLOR && priorityInfo.componentId != hyperion::COMP_EFFECT); bool backlightEnabled = (priorityInfo.componentId != hyperion::COMP_COLOR && priorityInfo.componentId != hyperion::COMP_EFFECT);