mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-26 19:26:59 +03:00
- Fixed apply button in options (broken a few commit ago)
This commit is contained in:
parent
fb54c035a7
commit
774fab54a3
2 changed files with 1 additions and 2 deletions
|
@ -535,7 +535,7 @@ bool options_imp::getClearFinishedOnExit() const{
|
||||||
|
|
||||||
void options_imp::on_applyButton_clicked(){
|
void options_imp::on_applyButton_clicked(){
|
||||||
saveOptions();
|
saveOptions();
|
||||||
emit optionsApplied(tr("Options were saved successfully."), false);
|
emit status_changed(tr("Options were saved successfully."), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void options_imp::on_cancelButton_clicked(){
|
void options_imp::on_cancelButton_clicked(){
|
||||||
|
|
|
@ -108,7 +108,6 @@ class options_imp : public QDialog, private Ui::Dialog{
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void status_changed(const QString&, bool) const;
|
void status_changed(const QString&, bool) const;
|
||||||
void optionsApplied(const QString&, bool);
|
|
||||||
void exitWithCancel();
|
void exitWithCancel();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue