mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 04:54:18 +00:00
- Fixed broken action "start All / Pause all" due to latest code changes
This commit is contained in:
parent
32f478a8c2
commit
d57062a45a
@ -1215,6 +1215,7 @@ void GUI::on_actionPause_All_triggered() {
|
||||
QTorrentHandle h = QTorrentHandle(*torrentIT);
|
||||
if(!h.is_valid() || h.is_paused()) continue;
|
||||
change = true;
|
||||
h.pause();
|
||||
if(h.is_seed()) {
|
||||
// Update in finished list
|
||||
finishedTorrentTab->pauseTorrent(h.hash());
|
||||
@ -1289,6 +1290,7 @@ void GUI::on_actionStart_All_triggered() {
|
||||
QTorrentHandle h = QTorrentHandle(*torrentIT);
|
||||
if(!h.is_valid() || !h.is_paused()) continue;
|
||||
change = true;
|
||||
h.resume();
|
||||
if(h.is_seed()) {
|
||||
// Update in finished list
|
||||
finishedTorrentTab->resumeTorrent(h.hash());
|
||||
|
Loading…
x
Reference in New Issue
Block a user