UI: Disable simple output rec. settings when active

This commit is contained in:
jp9000 2016-12-07 05:18:32 -08:00
parent f2e85b8352
commit 47fe89b964
2 changed files with 2 additions and 1 deletions

View File

@ -722,7 +722,7 @@
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QGroupBox" name="groupBox_9"> <widget class="QGroupBox" name="simpleRecordingGroupBox">
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Maximum"> <sizepolicy hsizetype="Preferred" vsizetype="Maximum">
<horstretch>0</horstretch> <horstretch>0</horstretch>

View File

@ -1554,6 +1554,7 @@ void OBSBasicSettings::LoadOutputSettings()
if (video_output_active(obs_get_video())) { if (video_output_active(obs_get_video())) {
ui->outputMode->setEnabled(false); ui->outputMode->setEnabled(false);
ui->outputModeLabel->setEnabled(false); ui->outputModeLabel->setEnabled(false);
ui->simpleRecordingGroupBox->setEnabled(false);
ui->advOutTopContainer->setEnabled(false); ui->advOutTopContainer->setEnabled(false);
ui->advOutRecTopContainer->setEnabled(false); ui->advOutRecTopContainer->setEnabled(false);
ui->advOutRecTypeContainer->setEnabled(false); ui->advOutRecTypeContainer->setEnabled(false);