Preferences: fixed groupbox modified signal not sent when reading a config file

This commit is contained in:
matlabbe
2016-11-30 21:24:17 -05:00
parent d879491a58
commit 40d0be5828

View File

@@ -1098,7 +1098,7 @@ void PreferencesDialog::setupSignals()
}
else if(groupBox)
{
connect(groupBox, SIGNAL(clicked(bool)), this, SLOT(addParameter(bool)));
connect(groupBox, SIGNAL(toggled(bool)), this, SLOT(addParameter(bool)));
}
else
{
@@ -2794,7 +2794,6 @@ void PreferencesDialog::selectSourceDatabase()
_ui->source_database_lineEdit_path->setText(paths.size()==1?paths.front():paths.join(";"));
_ui->source_spinBox_databaseStartPos->setValue(0);
_ui->source_spinBox_database_cameraIndex->setValue(-1);
_ui->source_checkBox_useDbStamps->setChecked(true);
}
}