Browse Source

Fix missing patchbay tab on carla-patchbay under ladish or NSM

tags/1.9.8
falkTX 8 years ago
parent
commit
1ee1fae82a
2 changed files with 3 additions and 2 deletions
  1. +1
    -1
      source/carla-patchbay
  2. +2
    -1
      source/carla_host.py

+ 1
- 1
source/carla-patchbay View File

@@ -53,7 +53,7 @@ if __name__ == '__main__':
# ------------------------------------------------------------------------------------------------------------------
# Create GUI

gui = HostWindow(host, not(LADISH_APP_NAME or NSM_URL))
gui = HostWindow(host, True)

# ------------------------------------------------------------------------------------------------------------------
# Show GUI


+ 2
- 1
source/carla_host.py View File

@@ -256,7 +256,8 @@ class HostWindow(QMainWindow):
self.ui.menu_Canvas.menuAction().setVisible(False)
self.ui.miniCanvasPreview.hide()
self.ui.tabWidget.removeTab(1)
self.ui.tabWidget.tabBar().hide()
if WINDOWS:
self.ui.tabWidget.tabBar().hide()

if host.isControl:
self.ui.dockWidget.hide()


Loading…
Cancel
Save