Browse Source

Remove PATCHBAY_PORT_TYPE_PARAMETER flag

tags/1.9.4
falkTX 11 years ago
parent
commit
36ee666c27
3 changed files with 0 additions and 10 deletions
  1. +0
    -5
      source/backend/CarlaBackend.h
  2. +0
    -3
      source/carla_backend.py
  3. +0
    -2
      source/carla_patchbay.py

+ 0
- 5
source/backend/CarlaBackend.h View File

@@ -327,11 +327,6 @@ const unsigned int PATCHBAY_PORT_TYPE_CV = 0x4;
*/
const unsigned int PATCHBAY_PORT_TYPE_MIDI = 0x8;

/*!
* Patchbay port is of Parameter type.
*/
const unsigned int PATCHBAY_PORT_TYPE_PARAMETER = 0x10;

/** @} */

/* ------------------------------------------------------------------------------------------------------------


+ 0
- 3
source/carla_backend.py View File

@@ -311,9 +311,6 @@ PATCHBAY_PORT_TYPE_CV = 0x4
# Patchbay port is of MIDI type.
PATCHBAY_PORT_TYPE_MIDI = 0x8

# Patchbay port is of Parameter type.
PATCHBAY_PORT_TYPE_PARAMETER = 0x10

# ------------------------------------------------------------------------------------------------------------
# Custom Data Types
# These types define how the value in the CustomData struct is stored.


+ 0
- 2
source/carla_patchbay.py View File

@@ -955,8 +955,6 @@ class CarlaPatchbayW(QFrame):
portType = patchcanvas.PORT_TYPE_AUDIO_JACK
elif (portFlags & PATCHBAY_PORT_TYPE_MIDI):
portType = patchcanvas.PORT_TYPE_MIDI_JACK
elif (portFlags & PATCHBAY_PORT_TYPE_PARAMETER):
portType = patchcanvas.PORT_TYPE_PARAMETER
else:
portType = patchcanvas.PORT_TYPE_NULL



Loading…
Cancel
Save