mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
- Removed option 'Automatically clear finished torrents' <- Decided it wasn't good for the network :)
This commit is contained in:
parent
868d7cee4a
commit
2e4b7b375b
3 changed files with 0 additions and 18 deletions
|
@ -145,7 +145,6 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
|
|||
connect(txt_savePath, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
|
||||
connect(check_goToSysTray, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
|
||||
connect(check_closeToSysTray, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
|
||||
connect(clearFinished_checkBox, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
|
||||
connect(confirmExit_checkBox, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
|
||||
connect(preview_program, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
|
||||
connect(alwaysOSD, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton()));
|
||||
|
@ -226,7 +225,6 @@ void options_imp::saveOptions(){
|
|||
settings.endGroup();
|
||||
settings.beginGroup("Behaviour");
|
||||
settings.setValue("ConfirmOnExit", getConfirmOnExit());
|
||||
settings.setValue("ClearFinishedDownloads", getClearFinishedOnExit());
|
||||
settings.setValue("GoToSystray", getGoToSysTrayOnMinimizingWindow());
|
||||
settings.setValue("GoToSystrayOnExit", getGoToSysTrayOnExitingWindow());
|
||||
settings.endGroup();
|
||||
|
@ -404,7 +402,6 @@ void options_imp::loadOptions(){
|
|||
settings.endGroup();
|
||||
settings.beginGroup("Behaviour");
|
||||
confirmExit_checkBox->setChecked(settings.value("ConfirmOnExit", true).toBool());
|
||||
clearFinished_checkBox->setChecked(settings.value("ClearFinishedDownloads", true).toBool());
|
||||
check_goToSysTray->setChecked(settings.value("GoToSystray", true).toBool());
|
||||
check_closeToSysTray->setChecked(settings.value("GoToSystrayOnExit", false).toBool());
|
||||
settings.endGroup();
|
||||
|
@ -538,10 +535,6 @@ void options_imp::on_okButton_clicked(){
|
|||
}
|
||||
}
|
||||
|
||||
bool options_imp::getClearFinishedOnExit() const{
|
||||
return clearFinished_checkBox->isChecked();
|
||||
}
|
||||
|
||||
void options_imp::on_applyButton_clicked(){
|
||||
saveOptions();
|
||||
emit status_changed(tr("Options were saved successfully."), false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue