Browse Source

fix vst params inside carla-plugin

tags/1.9.4
falkTX 10 years ago
parent
commit
692c9de242
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      source/carla-plugin
  2. +1
    -1
      source/carla_widgets.py

+ 1
- 1
source/carla-plugin View File

@@ -383,7 +383,7 @@ class PluginHost(object):

# -------------------------------------------------------------------

def get_parameter_text(self, pluginId, parameterId, value):
def get_parameter_text(self, pluginId, parameterId):
return ""

def get_program_name(self, pluginId, programId):


+ 1
- 1
source/carla_widgets.py View File

@@ -264,7 +264,7 @@ class PluginParameter(QWidget):
self.ui.sb_control.setVisible(False)
self.ui.sb_channel.setVisible(False)

if pHints & PARAMETER_USES_CUSTOM_TEXT:
if pHints & PARAMETER_USES_CUSTOM_TEXT and not gCarla.isPlugin:
self.ui.widget.setTextCallback(self._textCallBack)

self.ui.widget.updateAll()


Loading…
Cancel
Save