@@ -6,8 +6,8 @@ | |||||
<rect> | <rect> | ||||
<x>0</x> | <x>0</x> | ||||
<y>0</y> | <y>0</y> | ||||
<width>501</width> | |||||
<height>431</height> | |||||
<width>509</width> | |||||
<height>443</height> | |||||
</rect> | </rect> | ||||
</property> | </property> | ||||
<property name="windowTitle"> | <property name="windowTitle"> | ||||
@@ -350,7 +350,7 @@ | |||||
<item> | <item> | ||||
<widget class="QCheckBox" name="ch_force_stereo"> | <widget class="QCheckBox" name="ch_force_stereo"> | ||||
<property name="text"> | <property name="text"> | ||||
<string>Force Stereo (needs restart)</string> | |||||
<string>Force Stereo (needs reload)</string> | |||||
</property> | </property> | ||||
</widget> | </widget> | ||||
</item> | </item> | ||||
@@ -197,7 +197,7 @@ public: | |||||
if (pData->engine->getProccessMode() == ENGINE_PROCESS_MODE_CONTINUOUS_RACK) | if (pData->engine->getProccessMode() == ENGINE_PROCESS_MODE_CONTINUOUS_RACK) | ||||
pass(); | pass(); | ||||
// if inputs or outputs are just 1, then yes we can force stereo | // if inputs or outputs are just 1, then yes we can force stereo | ||||
else if (pData->audioIn.count == 1 || pData->audioOut.count == 1) | |||||
else if (pData->audioIn.count == 1 || pData->audioOut.count == 1 || fForcedStereoIn || fForcedStereoOut) | |||||
options |= PLUGIN_OPTION_FORCE_STEREO; | options |= PLUGIN_OPTION_FORCE_STEREO; | ||||
} | } | ||||
@@ -561,9 +561,6 @@ class PluginEdit(QDialog): | |||||
host.ReloadProgramsCallback.connect(self.slot_handleReloadProgramsCallback) | host.ReloadProgramsCallback.connect(self.slot_handleReloadProgramsCallback) | ||||
host.ReloadAllCallback.connect(self.slot_handleReloadAllCallback) | host.ReloadAllCallback.connect(self.slot_handleReloadAllCallback) | ||||
# TODO | |||||
self.ui.ch_force_stereo.hide() | |||||
#------------------------------------------------------------------ | #------------------------------------------------------------------ | ||||
@pyqtSlot(int, int, int, int) | @pyqtSlot(int, int, int, int) | ||||