Browse Source

Misc

tags/1.9.5
falkTX 10 years ago
parent
commit
d03223a6f2
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      source/backend/CarlaHostCommon.cpp
  2. +1
    -1
      source/carla_database.py

+ 1
- 1
source/backend/CarlaHostCommon.cpp View File

@@ -448,7 +448,7 @@ const CarlaCachedPluginInfo* carla_get_cached_plugin_info(PluginType ptype, uint
if (typeNodes.contains(lv2World.class_instrument))
{
info.category = CB::PLUGIN_CATEGORY_SYNTH;
info.hints |= PLUGIN_IS_SYNTH;
info.hints |= CB::PLUGIN_IS_SYNTH;
}
}



+ 1
- 1
source/carla_database.py View File

@@ -1481,7 +1481,7 @@ class PluginDatabaseW(QDialog):

internalCountNew = self.host.get_cached_plugin_count(PLUGIN_INTERNAL, "")
lv2CountNew = self.host.get_cached_plugin_count(PLUGIN_LV2, LV2_PATH)
auCountNew = self.host.get_cached_plugin_count(PLUGIN_AU, AU_PATH)
auCountNew = self.host.get_cached_plugin_count(PLUGIN_AU, AU_PATH)

if internalCountNew != internalCount or (len(internalPlugins) > 0 and
len(internalPlugins[0]) > 0 and


Loading…
Cancel
Save