From cd93fcfd645b0d1a4228aa01137033784c36fcfd Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 1 Aug 2014 08:15:05 +0100 Subject: [PATCH] Fix LV2 plugin style dir --- source/carla_style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/carla_style.py b/source/carla_style.py index bc0604f17..d3736a1da 100644 --- a/source/carla_style.py +++ b/source/carla_style.py @@ -55,7 +55,7 @@ class CarlaApplication(object): if CWDl.endswith("native-plugins%sresources" % os.sep): stylesDir = os.path.abspath(os.path.join(CWD, "..", "..", "..", "..", "bin")) 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: stylesDir = os.path.abspath(os.path.join(CWD, "..", "..", "..", "lib", "carla"))