mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 18:04:32 +00:00
Cut down number of signal emits
This commit is contained in:
parent
863c9f9876
commit
72d1d5d2dd
@ -325,13 +325,20 @@ void TransferListModel::handleTorrentStatusUpdated(BitTorrent::TorrentHandle *co
|
|||||||
void TransferListModel::handleTorrentsUpdated(const QVector<BitTorrent::TorrentHandle *> &torrents)
|
void TransferListModel::handleTorrentsUpdated(const QVector<BitTorrent::TorrentHandle *> &torrents)
|
||||||
{
|
{
|
||||||
const int columns = (columnCount() - 1);
|
const int columns = (columnCount() - 1);
|
||||||
for (BitTorrent::TorrentHandle *const torrent : torrents) {
|
|
||||||
const int row = m_torrentMap.value(torrent, -1);
|
|
||||||
|
|
||||||
if (row < 0)
|
if (torrents.size() <= (m_torrentList.size() * 0.5)) {
|
||||||
continue;
|
for (BitTorrent::TorrentHandle *const torrent : torrents) {
|
||||||
|
const int row = m_torrentMap.value(torrent, -1);
|
||||||
|
|
||||||
emit dataChanged(index(row, 0), index(row, columns));
|
if (row < 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
emit dataChanged(index(row, 0), index(row, columns));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// save the overhead when more than half of the torrent list needs update
|
||||||
|
emit dataChanged(index(0, 0), index((rowCount() - 1), columns));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user