Fix proxy settings radio buttons not triggering updates of the proxy settings.
This commit is contained in:
parent
267f18ca81
commit
28c35ea0db
3 changed files with 18 additions and 6 deletions
|
@ -61,6 +61,7 @@ SettingsDialog::SettingsDialog(QWidget *parent) : QDialog(parent), ui(new Ui::Se
|
|||
{
|
||||
MMC->updateChecker()->updateChanList();
|
||||
}
|
||||
connect(ui->proxyGroup, SIGNAL(buttonClicked(int)), SLOT(proxyChanged(int)));
|
||||
}
|
||||
|
||||
SettingsDialog::~SettingsDialog()
|
||||
|
@ -215,9 +216,8 @@ void SettingsDialog::on_buttonBox_rejected()
|
|||
MMC->settings()->set("SettingsGeometry", saveGeometry().toBase64());
|
||||
}
|
||||
|
||||
void SettingsDialog::on_proxyNoneBtn_toggled(bool checked)
|
||||
void SettingsDialog::proxyChanged(int)
|
||||
{
|
||||
Q_UNUSED(checked);
|
||||
updateCheckboxStuff();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue