mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
- BUGFIX: Pause/Start All now affect all tabs, not only the current one
This commit is contained in:
parent
9ca02aad88
commit
0fc2d289eb
2 changed files with 5 additions and 48 deletions
52
src/GUI.cpp
52
src/GUI.cpp
|
@ -990,30 +990,8 @@ void GUI::togglePausedState(QString hash) {
|
|||
// Pause All Downloads in DL list
|
||||
void GUI::on_actionPause_All_triggered() {
|
||||
bool change = false;
|
||||
bool inDownloadList = true;
|
||||
bool hidden = false;
|
||||
switch(getCurrentTabIndex()) {
|
||||
case -1:
|
||||
hidden = true;
|
||||
inDownloadList = false;
|
||||
break;
|
||||
case 0:
|
||||
break;
|
||||
case 1:
|
||||
inDownloadList = false;
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
||||
QStringList DL_hashes;
|
||||
QStringList F_hashes;
|
||||
if(hidden || inDownloadList) {
|
||||
DL_hashes = BTSession->getUnfinishedTorrents();
|
||||
}
|
||||
if(hidden || !inDownloadList) {
|
||||
F_hashes = BTSession->getFinishedTorrents();
|
||||
}
|
||||
QStringList DL_hashes = BTSession->getUnfinishedTorrents();
|
||||
QStringList F_hashes = BTSession->getFinishedTorrents();
|
||||
QString hash;
|
||||
foreach(hash, DL_hashes) {
|
||||
if(BTSession->pauseTorrent(hash)){
|
||||
|
@ -1059,30 +1037,8 @@ void GUI::on_actionPause_triggered() {
|
|||
// Resume All Downloads in DL list
|
||||
void GUI::on_actionStart_All_triggered() {
|
||||
bool change = false;
|
||||
bool inDownloadList = true;
|
||||
bool hidden = false;
|
||||
switch(getCurrentTabIndex()) {
|
||||
case -1:
|
||||
hidden = true;
|
||||
inDownloadList = false;
|
||||
break;
|
||||
case 0:
|
||||
break;
|
||||
case 1:
|
||||
inDownloadList = false;
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
||||
QStringList DL_hashes;
|
||||
QStringList F_hashes;
|
||||
if(hidden || inDownloadList) {
|
||||
DL_hashes = BTSession->getUnfinishedTorrents();
|
||||
}
|
||||
if(hidden || !inDownloadList) {
|
||||
F_hashes = BTSession->getFinishedTorrents();
|
||||
}
|
||||
QStringList DL_hashes = BTSession->getUnfinishedTorrents();
|
||||
QStringList F_hashes = BTSession->getFinishedTorrents();
|
||||
QString hash;
|
||||
foreach(hash, DL_hashes) {
|
||||
if(BTSession->resumeTorrent(hash)){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue