From e0430f088daaa7a440ae8846d0449bf720dca615 Mon Sep 17 00:00:00 2001 From: redPanther Date: Mon, 29 Aug 2016 19:26:42 +0200 Subject: [PATCH] fix #197 fix #197, prio 0 is set to black for infinity, when foreground effect is invalid --- src/hyperiond/hyperiond.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hyperiond/hyperiond.cpp b/src/hyperiond/hyperiond.cpp index a02e4a6e..6fd8ff41 100644 --- a/src/hyperiond/hyperiond.cpp +++ b/src/hyperiond/hyperiond.cpp @@ -186,7 +186,7 @@ void HyperionDaemon::startInitialEffect() const int BG_PRIORITY = PriorityMuxer::LOWEST_PRIORITY -1; // clear the leds - hyperion->setColor(FG_PRIORITY, ColorRgb::BLACK, DURATION_INFINITY, false); + hyperion->setColor(FG_PRIORITY, ColorRgb::BLACK, 100, false); // initial foreground effect/color const QJsonValue fgEffectConfig = effectConfig["foreground-effect"];