From f278e79d6f04a9dbf338fa849cfa5a5c1a54038f Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 14 Mar 2019 09:01:16 +0100 Subject: [PATCH] Fix carla-control not realizing plugins are active when fist added Signed-off-by: falkTX --- source/backend/engine/CarlaEngine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/backend/engine/CarlaEngine.cpp b/source/backend/engine/CarlaEngine.cpp index ac259066a..f1928d5f0 100644 --- a/source/backend/engine/CarlaEngine.cpp +++ b/source/backend/engine/CarlaEngine.cpp @@ -646,7 +646,7 @@ bool CarlaEngine::addPlugin(const BinaryType btype, const PluginType ptype, callback(true, true, ENGINE_CALLBACK_PLUGIN_ADDED, id, 0, 0, 0, 0.0f, plugin->getName()); if (getType() != kEngineTypeBridge) - plugin->setActive(true, false, true); + plugin->setActive(true, true, true); #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH if (pData->options.processMode == ENGINE_PROCESS_MODE_PATCHBAY)