Browse Source

Fix disabled gui when stopping engine with no plugins

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-alpha2
falkTX 5 years ago
parent
commit
913b2d3167
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/frontend/carla_host.py

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

@@ -874,7 +874,7 @@ class HostWindow(QMainWindow):
if self.host.is_engine_running():
if self.fCustomStopAction == self.CUSTOM_ACTION_PROJECT_LOAD:
self.removeAllPlugins()
else:
elif self.fPluginCount != 0:
self.fCurrentlyRemovingAllPlugins = True
self.projectLoadingStarted()



Loading…
Cancel
Save