Browse Source

Turn off the scheduler when the user manually changes the rate limits mode.

adaptive-webui-19844
sledgehammer999 11 years ago
parent
commit
18b9de831f
  1. 5
      src/qtlibtorrent/qbtsession.cpp
  2. 7
      src/statusbar.h

5
src/qtlibtorrent/qbtsession.cpp

@ -356,7 +356,7 @@ void QBtSession::configureSession() { @@ -356,7 +356,7 @@ void QBtSession::configureSession() {
}
bd_scheduler->start();
} else {
if (bd_scheduler) delete bd_scheduler;
delete bd_scheduler;
}
#ifndef DISABLE_GUI
// Resolve countries
@ -708,6 +708,9 @@ void QBtSession::useAlternativeSpeedsLimit(bool alternative) { @@ -708,6 +708,9 @@ void QBtSession::useAlternativeSpeedsLimit(bool alternative) {
qDebug() << Q_FUNC_INFO << alternative;
// Save new state to remember it on startup
Preferences pref;
// Stop the scheduler when the user has manually changed the bandwidth mode
if (!pref.isSchedulerEnabled())
delete bd_scheduler;
pref.setAltBandwidthEnabled(alternative);
// Apply settings to the bittorrent session
int down_limit = alternative ? pref.getAltGlobalDownloadLimit() : pref.getGlobalDownloadLimit();

7
src/statusbar.h

@ -207,7 +207,12 @@ public slots: @@ -207,7 +207,12 @@ public slots:
}
void toggleAlternativeSpeeds() {
QBtSession::instance()->useAlternativeSpeedsLimit(!Preferences().isAltBandwidthEnabled());
Preferences pref;
if (pref.isSchedulerEnabled()) {
pref.setSchedulerEnabled(false);
m_bar->showMessage(tr("Manual change of rate limits mode. The scheduler is disabled."), 5000);
}
QBtSession::instance()->useAlternativeSpeedsLimit(!pref.isAltBandwidthEnabled());
}
void capDownloadSpeed() {

Loading…
Cancel
Save