Set overwrite to false by default in organise dialog.

Too dangerous to be activated by default IMO.
This commit is contained in:
Arnaud Bienner 2014-02-01 03:35:34 +01:00
parent 06184cc5fb
commit ee20103510
1 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ void OrganiseDialog::Reset() {
ui_->replace_ascii->setChecked(false);
ui_->replace_spaces->setChecked(false);
ui_->replace_the->setChecked(false);
ui_->overwrite->setChecked(true);
ui_->overwrite->setChecked(false);
ui_->eject_after->setChecked(false);
}
@ -244,7 +244,7 @@ void OrganiseDialog::showEvent(QShowEvent*) {
ui_->replace_ascii->setChecked(s.value("replace_ascii", false).toBool());
ui_->replace_spaces->setChecked(s.value("replace_spaces", false).toBool());
ui_->replace_the->setChecked(s.value("replace_the", false).toBool());
ui_->overwrite->setChecked(s.value("overwrite", true).toBool());
ui_->overwrite->setChecked(s.value("overwrite", false).toBool());
ui_->eject_after->setChecked(s.value("eject_after", false).toBool());
QString destination = s.value("destination").toString();