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