Browse Source

Set carla-plugin embed UI size to be the same as develop branch

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.0.0
falkTX 6 years ago
parent
commit
dfad463dcd
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      source/native-plugins/resources/carla-plugin
  2. +2
    -2
      source/plugin/carla-vst.cpp

+ 1
- 1
source/native-plugins/resources/carla-plugin View File

@@ -494,7 +494,7 @@ class CarlaEmbedW(QEmbedWidget):
self.host = host
self.fWinId = winId
self.fWidget = self.getWidget()
self.fWidget.setFixedSize(740, 512)
self.fWidget.setFixedSize(1024, 712)

self.fLayout = QVBoxLayout(self.fWidget)
self.fLayout.setContentsMargins(0, 0, 0, 0)


+ 2
- 2
source/plugin/carla-vst.cpp View File

@@ -105,8 +105,8 @@ public:

fVstRect.top = 0;
fVstRect.left = 0;
fVstRect.bottom = 512;
fVstRect.right = 740;
fVstRect.bottom = 712;
fVstRect.right = 1024;

init();
}


Loading…
Cancel
Save