From c8894e87c1967d5c03b9dc7667f507ff6099b48c Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 7 Feb 2015 14:01:07 +0000 Subject: [PATCH] Start in patchbay tab if using forced patchbay mode, closes #162 --- source/carla_host.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/carla_host.py b/source/carla_host.py index 948002e46..b2cc0a57e 100644 --- a/source/carla_host.py +++ b/source/carla_host.py @@ -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)