Browse Source

Start in patchbay tab if using forced patchbay mode, closes #162

tags/1.9.6
falkTX 10 years ago
parent
commit
c8894e87c1
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      source/carla_host.py

+ 4
- 0
source/carla_host.py View File

@@ -418,6 +418,10 @@ class HostWindow(QMainWindow):
if self.host.isPlugin:
self.startTimers()

# Start in patchbay tab if using forced patchbay mode
if host.processModeForced and host.processMode == ENGINE_PROCESS_MODE_PATCHBAY:
self.ui.tabWidget.setCurrentIndex(1)

# For NSM we wait for the open message
if NSM_URL and host.nsmOK:
host.nsm_ready(-1)


Loading…
Cancel
Save