This commit is contained in:
brindosch 2017-02-21 13:57:41 +01:00
parent 50b3641490
commit 8a6c1fdab3

View File

@ -376,7 +376,7 @@ int EffectEngine::runEffectScript(const QString &script, const QString &name, co
// create the effect // create the effect
Effect * effect = new Effect(_mainThreadState, priority, timeout, script, name, args); Effect * effect = new Effect(_mainThreadState, priority, timeout, script, name, args);
connect(effect, SIGNAL(setColors(int,std::vector<ColorRgb>,int,bool,hyperion::Components,QString="Blaah")), _hyperion, SLOT(setColors(int,std::vector<ColorRgb>,int,bool,hyperion::Components,QString="Blaah")), Qt::QueuedConnection); connect(effect, SIGNAL(setColors(int,std::vector<ColorRgb>,int,bool,hyperion::Components)), _hyperion, SLOT(setColors(int,std::vector<ColorRgb>,int,bool,hyperion::Components)), Qt::QueuedConnection);
connect(effect, SIGNAL(effectFinished(Effect*)), this, SLOT(effectFinished(Effect*))); connect(effect, SIGNAL(effectFinished(Effect*)), this, SLOT(effectFinished(Effect*)));
_activeEffects.push_back(effect); _activeEffects.push_back(effect);