mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
COSMETIC: Display number of torrents in transfers tab label
This commit is contained in:
parent
c09294df2f
commit
defd77b94c
5 changed files with 14 additions and 5 deletions
|
@ -209,7 +209,7 @@ void TransferListWidget::addTorrent(QTorrentHandle& h) {
|
|||
// Emit signal
|
||||
emit torrentAdded(listModel->index(row, 0));
|
||||
// Refresh the list
|
||||
refreshList();
|
||||
refreshList(true);
|
||||
} catch(invalid_handle e) {
|
||||
// Remove added torrent
|
||||
listModel->removeRow(row);
|
||||
|
@ -235,7 +235,7 @@ void TransferListWidget::deleteTorrent(int row, bool refresh_list) {
|
|||
emit torrentAboutToBeRemoved(index);
|
||||
listModel->removeRow(row);
|
||||
if(refresh_list)
|
||||
refreshList();
|
||||
refreshList(true);
|
||||
}
|
||||
|
||||
// Wrapper slot for bittorrent signal
|
||||
|
@ -475,11 +475,11 @@ void TransferListWidget::setRefreshInterval(int t) {
|
|||
refreshTimer->start(t);
|
||||
}
|
||||
|
||||
void TransferListWidget::refreshList() {
|
||||
void TransferListWidget::refreshList(bool force) {
|
||||
// Stop updating the display
|
||||
setUpdatesEnabled(false);
|
||||
// Refresh only if displayed
|
||||
if(main_window->getCurrentTabIndex() != TAB_TRANSFER) return;
|
||||
if(!force && main_window->getCurrentTabIndex() != TAB_TRANSFER) return;
|
||||
unsigned int nb_downloading = 0, nb_seeding=0, nb_active=0, nb_inactive = 0;
|
||||
if(BTSession->getSession()->get_torrents().size() != (uint)listModel->rowCount()) {
|
||||
// Oups, we have torrents that are not displayed, fix that
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue