Browse Source

Allow to force usage of plugin bridges

tags/1.9.4
falkTX 12 years ago
parent
commit
14fd1f8fb6
3 changed files with 0 additions and 13 deletions
  1. +0
    -3
      resources/ui/carla_settings.ui
  2. +0
    -7
      source/backend/plugin/BridgePlugin.cpp
  3. +0
    -3
      source/bridges/CarlaBridgePlugin.cpp

+ 0
- 3
resources/ui/carla_settings.ui View File

@@ -887,9 +887,6 @@ You can disable these checks to get a faster scanning time (at your own risk).</
</item> </item>
<item> <item>
<widget class="QCheckBox" name="ch_engine_prefer_plugin_bridges"> <widget class="QCheckBox" name="ch_engine_prefer_plugin_bridges">
<property name="enabled">
<bool>false</bool>
</property>
<property name="toolTip"> <property name="toolTip">
<string>Whenever possible, run the plugins in bridge mode.</string> <string>Whenever possible, run the plugins in bridge mode.</string>
</property> </property>


+ 0
- 7
source/backend/plugin/BridgePlugin.cpp View File

@@ -1278,7 +1278,6 @@ public:
{ {
CARLA_ASSERT(kData->engine != nullptr); CARLA_ASSERT(kData->engine != nullptr);
CARLA_ASSERT(kData->client == nullptr); CARLA_ASSERT(kData->client == nullptr);
CARLA_ASSERT(filename != nullptr);


// --------------------------------------------------------------- // ---------------------------------------------------------------
// first checks // first checks
@@ -1294,12 +1293,6 @@ public:
return false; return false;
} }


if (filename == nullptr)
{
kData->engine->setLastError("null filename");
return false;
}

// --------------------------------------------------------------- // ---------------------------------------------------------------
// set info // set info




+ 0
- 3
source/bridges/CarlaBridgePlugin.cpp View File

@@ -545,9 +545,6 @@ int main(int argc, char* argv[])
{ {
client.sendOscUpdate(); client.sendOscUpdate();
client.sendOscBridgeUpdate(); client.sendOscBridgeUpdate();

// test
carla_set_active(0, true);
} }
else else
{ {


Loading…
Cancel
Save