Browse Source

Fix listing LV2 plugins on Windows

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.0-RC1
falkTX 4 years ago
parent
commit
3547e3aca0
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/frontend/carla_database.py

+ 1
- 1
source/frontend/carla_database.py View File

@@ -351,7 +351,7 @@ def checkPluginCached(desc, ptype):
pinfo['parameters.outs'] = desc['parameterOuts']

if ptype == PLUGIN_LV2:
pinfo['filename'], pinfo['label'] = pinfo['label'].split('/',1)
pinfo['filename'], pinfo['label'] = pinfo['label'].split(os.path.sep,1)

elif ptype == PLUGIN_SFZ:
pinfo['filename'] = pinfo['label']


Loading…
Cancel
Save