mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 17:53:08 -07:00
- Queued torrents are now identified in Web UI
- Improved transfer list update for queued torrents - Allow to show/hide top toolbar - top toolbar is now hidden as a default - Connection status is now displayed in status bar (bottom) - Removed "Disconnected" connection status (bad detection) - Added increase/decrease priority actions to Edit menu - Added keyboard shortcuts for increase/decrease priority actions
This commit is contained in:
parent
c7a289d183
commit
ff26ea94f5
23 changed files with 159 additions and 100 deletions
|
@ -464,8 +464,10 @@ void bittorrent::updateUploadQueue() {
|
|||
}
|
||||
}
|
||||
}
|
||||
if(change)
|
||||
emit updateFinishedTorrentNumber();
|
||||
if(change) {
|
||||
emit updateFinishedTorrentNumber();
|
||||
emit forceFinishedListUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
void bittorrent::updateDownloadQueue() {
|
||||
|
@ -520,8 +522,10 @@ void bittorrent::updateDownloadQueue() {
|
|||
}
|
||||
}
|
||||
}
|
||||
if(change)
|
||||
if(change) {
|
||||
emit updateUnfinishedTorrentNumber();
|
||||
emit forceUnfinishedListUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
// Calculate the ETA using GASA
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue