Browse Source

Fix carla-plugin for last commit

tags/1.9.6
falkTX 10 years ago
parent
commit
889d30655c
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      source/carla_shared.py
  2. +2
    -2
      source/native-plugins/resources/carla-plugin

+ 1
- 1
source/carla_shared.py View File

@@ -565,7 +565,7 @@ def getPaths(libPrefix = None):


# local source # local source
elif CWDl.endswith("native-plugins%sresources" % os.sep): elif CWDl.endswith("native-plugins%sresources" % os.sep):
pathBinaries = os.path.abspath(os.path.join(CWD, "..", "..", "..", "..", "bin"))
pathBinaries = os.path.abspath(os.path.join(CWD, "..", "..", "..", "bin"))
pathResources = CWD pathResources = CWD


# other # other


+ 2
- 2
source/native-plugins/resources/carla-plugin View File

@@ -25,9 +25,9 @@ from externalui import ExternalUI
# ------------------------------------------------------------------------------------------------------------ # ------------------------------------------------------------------------------------------------------------
# Host Plugin object # Host Plugin object


class PluginHost(CarlaHostPlugin):
class PluginHost(CarlaHostQtPlugin):
def __init__(self): def __init__(self):
CarlaHostPlugin.__init__(self)
CarlaHostQtPlugin.__init__(self)


if False: if False:
# kdevelop likes this :) # kdevelop likes this :)


Loading…
Cancel
Save