From cb159ed00d8a2d3f74c7971450e0b098aa2b43ed Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 30 Mar 2010 12:08:00 +0000 Subject: [PATCH] Enable Apply button when alternative rate limits are changed --- src/options_imp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/options_imp.cpp b/src/options_imp.cpp index 0b4f6f733..a2f049f47 100644 --- a/src/options_imp.cpp +++ b/src/options_imp.cpp @@ -216,6 +216,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){ connect(checkDownloadLimit, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton())); connect(spinUploadLimit, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton())); connect(spinDownloadLimit, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton())); + connect(spinUploadLimitAlt, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton())); + connect(spinDownloadLimitAlt, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton())); connect(check_schedule, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton())); connect(schedule_from, SIGNAL(timeChanged(QTime)), this, SLOT(enableApplyButton())); connect(schedule_to, SIGNAL(timeChanged(QTime)), this, SLOT(enableApplyButton()));