Browse Source

Always show internal plugins in DB, even if format is different

tags/1.9.4
falkTX 10 years ago
parent
commit
7cd1adf0e7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/carla_database.py

+ 1
- 1
source/carla_database.py View File

@@ -1485,7 +1485,7 @@ class PluginDatabaseW(QDialog):
self.ui.frame.setVisible(yesNo) self.ui.frame.setVisible(yesNo)


def _addPluginToTable(self, plugin, ptype): def _addPluginToTable(self, plugin, ptype):
if plugin['API'] != PLUGIN_QUERY_API_VERSION:
if plugin['API'] != PLUGIN_QUERY_API_VERSION and not ptype == self.tr("Internal"):
return return


index = self.fLastTableIndex index = self.fLastTableIndex


Loading…
Cancel
Save