Browse Source

Add fix for carla-single not having proper PWD

tags/v0.9.1
falkTX 7 years ago
parent
commit
b82db9af8d
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      src/claudia_launcher.py

+ 4
- 3
src/claudia_launcher.py View File

@@ -214,7 +214,7 @@ class ClaudiaLauncher(QWidget, ui_claudia_launcher.Ui_ClaudiaLauncherW):


if tabIndex == iTabPlugin: if tabIndex == iTabPlugin:
plugin = self.listPlugin.item(self.listPlugin.currentRow(), 0).data(Qt.UserRole) plugin = self.listPlugin.item(self.listPlugin.currentRow(), 0).data(Qt.UserRole)
return (plugin["name"], "carla-single %s" % plugin["label"])
return (plugin["name"], "carla-single lv2 %s" % plugin["label"])


if tabIndex == iTabEffect: if tabIndex == iTabEffect:
item = self.listEffect.item(self.listEffect.currentRow(), 0).data(Qt.UserRole) item = self.listEffect.item(self.listEffect.currentRow(), 0).data(Qt.UserRole)
@@ -307,7 +307,7 @@ class ClaudiaLauncher(QWidget, ui_claudia_launcher.Ui_ClaudiaLauncherW):
tmplte_lvl = "1" tmplte_lvl = "1"


elif binary.startswith("carla-single"): elif binary.startswith("carla-single"):
tmplte_cmd = binary
tmplte_cmd = binary + " " + proj_folder
tmplte_lvl = "1" tmplte_lvl = "1"


elif binary == "ardour": elif binary == "ardour":
@@ -826,7 +826,8 @@ class ClaudiaLauncher(QWidget, ui_claudia_launcher.Ui_ClaudiaLauncherW):
if haveCarla and os.path.exists("/usr/lib/carla/libcarla_utils.so"): if haveCarla and os.path.exists("/usr/lib/carla/libcarla_utils.so"):
utils = CarlaUtils("/usr/lib/carla/libcarla_utils.so") utils = CarlaUtils("/usr/lib/carla/libcarla_utils.so")
last_pos = 0 last_pos = 0
for i in range(utils.get_cached_plugin_count(PLUGIN_LV2, os.getenv("LV2_PATH", "~/.lv2:/usr/lib/lv2:/usr/local/lib/lv2"))):
lv2path = os.getenv("LV2_PATH", "~/.lv2:/usr/lib/lv2:/usr/local/lib/lv2")
for i in range(utils.get_cached_plugin_count(PLUGIN_LV2, lv2path)):
plugin = utils.get_cached_plugin_info(PLUGIN_LV2, i) plugin = utils.get_cached_plugin_info(PLUGIN_LV2, i)


if (plugin["hints"] & PLUGIN_HAS_CUSTOM_UI) == 0: if (plugin["hints"] & PLUGIN_HAS_CUSTOM_UI) == 0:


Loading…
Cancel
Save