Browse Source

Fix removing plugin in carla-rack plugin mode

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 4 years ago
parent
commit
eae7c39ad6
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      source/frontend/carla_host.py

+ 2
- 1
source/frontend/carla_host.py View File

@@ -1393,7 +1393,8 @@ class HostWindow(QMainWindow):

@pyqtSlot(int)
def slot_handlePluginRemovedCallback(self, pluginId):
patchcanvas.handlePluginRemoved(pluginId)
if self.fWithCanvas:
patchcanvas.handlePluginRemoved(pluginId)

if pluginId in self.fSelectedPlugins:
self.clearSideStuff()


Loading…
Cancel
Save