Browse Source

Fix LV2 plugin style dir

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

+ 1
- 1
source/carla_style.py View File

@@ -55,7 +55,7 @@ class CarlaApplication(object):
if CWDl.endswith("native-plugins%sresources" % os.sep): if CWDl.endswith("native-plugins%sresources" % os.sep):
stylesDir = os.path.abspath(os.path.join(CWD, "..", "..", "..", "..", "bin")) stylesDir = os.path.abspath(os.path.join(CWD, "..", "..", "..", "..", "bin"))
elif "carla-native.lv2" in sys.argv[0].lower(): elif "carla-native.lv2" in sys.argv[0].lower():
stylesDir = os.path.abspath(os.path.join(CWD, "..", "..", "..", "lib", "lv2", "carla-native.lv2"))
stylesDir = os.path.abspath(os.path.join(CWD, "..", "..", "..", "lv2", "carla-native.lv2"))
else: else:
stylesDir = os.path.abspath(os.path.join(CWD, "..", "..", "..", "lib", "carla")) stylesDir = os.path.abspath(os.path.join(CWD, "..", "..", "..", "lib", "carla"))




Loading…
Cancel
Save