From 75f9a6df60a95b020803156eea9ccd850479e05b Mon Sep 17 00:00:00 2001 From: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com> Date: Thu, 5 Mar 2020 18:29:10 +0100 Subject: [PATCH] Fixed bug PR #703 --- libsrc/hyperion/ComponentRegister.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libsrc/hyperion/ComponentRegister.cpp b/libsrc/hyperion/ComponentRegister.cpp index 61b830cd..21db88c3 100644 --- a/libsrc/hyperion/ComponentRegister.cpp +++ b/libsrc/hyperion/ComponentRegister.cpp @@ -37,6 +37,7 @@ void ComponentRegister::setNewComponentState(const hyperion::Components comp, co _componentStates[comp] = activated; // emit component has changed state emit updatedComponentState(comp, activated); + emit _hyperion->compStateChangeRequest(comp, activated); } } @@ -73,4 +74,4 @@ void ComponentRegister::handleCompStateChangeRequest(const hyperion::Components } _inProgress = false; } -} \ No newline at end of file +}