mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 00:33:09 -07:00
- Fix for queueing system
This commit is contained in:
parent
cc5015773b
commit
3f5340523f
4 changed files with 59 additions and 7 deletions
|
@ -1047,9 +1047,10 @@ void GUI::configureSession(bool deleteOptions) {
|
|||
downloadingTorrentTab->hidePriorityColumn(false);
|
||||
}
|
||||
int max_torrents = options->getMaxActiveTorrents();
|
||||
int max_uploads = options->getMaxActiveUploads();
|
||||
int max_downloads = options->getMaxActiveDownloads();
|
||||
sessionSettings.active_downloads = max_downloads;
|
||||
sessionSettings.active_seeds = -1;
|
||||
sessionSettings.active_seeds = max_uploads;
|
||||
sessionSettings.active_limit = max_torrents;
|
||||
sessionSettings.dont_count_slow_torrents = false;
|
||||
BTSession->setQueueingEnabled(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue