Browse Source

Misc

tags/1.9.4
falkTX 10 years ago
parent
commit
ff0df5ecf9
2 changed files with 7 additions and 7 deletions
  1. +2
    -2
      source/carla_skin.py
  2. +5
    -5
      source/carla_widgets.py

+ 2
- 2
source/carla_skin.py View File

@@ -1158,7 +1158,7 @@ class PluginSlot_ZynFX(AbstractPluginSlot):
continue continue


paramName = charPtrToString(paramInfo['name']) paramName = charPtrToString(paramInfo['name'])
paramLow = paramName.lower()
#paramLow = paramName.lower()


# real zyn fx plugins # real zyn fx plugins
if self.fPluginInfo['label'] == "zynalienwah": if self.fPluginInfo['label'] == "zynalienwah":
@@ -1322,7 +1322,7 @@ def createPluginSlot(parent, pluginId):
return PluginSlot_Calf(parent, pluginId) return PluginSlot_Calf(parent, pluginId)


return PluginSlot_BasicFX(parent, pluginId) return PluginSlot_BasicFX(parent, pluginId)
return PluginSlot_Default(parent, pluginId)
#return PluginSlot_Default(parent, pluginId)


# ------------------------------------------------------------------------------------------------------------ # ------------------------------------------------------------------------------------------------------------
# Main Testing # Main Testing


+ 5
- 5
source/carla_widgets.py View File

@@ -540,14 +540,14 @@ class PluginEdit(QDialog):
def reloadInfo(self): def reloadInfo(self):
if gCarla.host is not None: if gCarla.host is not None:
pluginName = gCarla.host.get_real_plugin_name(self.fPluginId) pluginName = gCarla.host.get_real_plugin_name(self.fPluginId)
audioCountInfo = gCarla.host.get_audio_port_count_info(self.fPluginId)
#audioCountInfo = gCarla.host.get_audio_port_count_info(self.fPluginId)
midiCountInfo = gCarla.host.get_midi_port_count_info(self.fPluginId) midiCountInfo = gCarla.host.get_midi_port_count_info(self.fPluginId)
paramCountInfo = gCarla.host.get_parameter_count_info(self.fPluginId)
#paramCountInfo = gCarla.host.get_parameter_count_info(self.fPluginId)
else: else:
pluginName = "" pluginName = ""
audioCountInfo = gFakePortCountInfo
#audioCountInfo = gFakePortCountInfo
midiCountInfo = gFakePortCountInfo midiCountInfo = gFakePortCountInfo
paramCountInfo = gFakePortCountInfo
#paramCountInfo = gFakePortCountInfo


pluginHints = self.fPluginInfo['hints'] pluginHints = self.fPluginInfo['hints']


@@ -1385,7 +1385,7 @@ class PluginEdit(QDialog):
# Main # Main


if __name__ == '__main__': if __name__ == '__main__':
from carla_style import *
from carla_style import CarlaApplication


app = CarlaApplication() app = CarlaApplication()




Loading…
Cancel
Save