1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

- Update queue when pausing a torrent

This commit is contained in:
Christophe Dumez 2008-08-02 19:49:37 +00:00
parent 48ec57604f
commit e27b08d970

View File

@ -761,6 +761,10 @@ bool bittorrent::pauseTorrent(QString hash) {
change = true;
// Save fast resume data
saveFastResumeAndRatioData(hash);
if(queueingEnabled) {
updateDownloadQueue();
updateUploadQueue();
}
qDebug("Torrent paused successfully");
emit pausedTorrent(hash);
}else{