From 0b7906f0998483baaaad7cf1a0db678d2861dcb9 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Fri, 15 Mar 2019 10:16:13 +1100 Subject: [PATCH] fixed preferences bug that clears the image sequence formats --- dialogs/preferencesdialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dialogs/preferencesdialog.cpp b/dialogs/preferencesdialog.cpp index d778d20fe..ebed6299e 100644 --- a/dialogs/preferencesdialog.cpp +++ b/dialogs/preferencesdialog.cpp @@ -534,7 +534,7 @@ void PreferencesDialog::setup_ui() { general_layout->addWidget(new QLabel(tr("Image sequence formats:"), this), row, 0); imgSeqFormatEdit = new QLineEdit(general_tab); - + imgSeqFormatEdit->setText(olive::CurrentConfig.img_seq_formats); general_layout->addWidget(imgSeqFormatEdit, row, 1, 1, 4); row++; @@ -545,6 +545,7 @@ void PreferencesDialog::setup_ui() { recordingComboBox = new QComboBox(general_tab); recordingComboBox->addItem(tr("Mono")); recordingComboBox->addItem(tr("Stereo")); + recordingComboBox->setCurrentIndex(olive::CurrentConfig.recording_mode - 1); general_layout->addWidget(recordingComboBox, row, 1, 1, 4); row++;