Browse Source

Make main carla client selectable on canvas in jack mode

And remove a print, for now

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-rc1
falkTX 6 years ago
parent
commit
0c197e12b1
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      source/backend/engine/CarlaEngineJack.cpp
  2. +1
    -1
      source/frontend/patchcanvas/patchcanvas.py

+ 1
- 1
source/backend/engine/CarlaEngineJack.cpp View File

@@ -2455,7 +2455,7 @@ private:
ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED, ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED,
groupNameToId.group, groupNameToId.group,
PATCHBAY_ICON_CARLA, PATCHBAY_ICON_CARLA,
-1,
MAIN_CARLA_PLUGIN_ID,
0, 0.0f, 0, 0.0f,
groupNameToId.name); groupNameToId.name);
fUsedGroups.list.append(groupNameToId); fUsedGroups.list.append(groupNameToId);


+ 1
- 1
source/frontend/patchcanvas/patchcanvas.py View File

@@ -912,7 +912,7 @@ def redrawPluginGroup(plugin_id):
group = canvas.group_plugin_map.get(plugin_id, None) group = canvas.group_plugin_map.get(plugin_id, None)


if group is None: if group is None:
qCritical("PatchCanvas::redrawPluginGroup(%i) - unable to find group" % plugin_id)
#qCritical("PatchCanvas::redrawPluginGroup(%i) - unable to find group" % plugin_id)
return return


group.widgets[0].update() group.widgets[0].update()


Loading…
Cancel
Save