1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 01:44:26 +00:00

- Display the right icon for active uploads in UI transfer list (Web UI was ok)

This commit is contained in:
Christophe Dumez 2009-11-27 16:11:22 +00:00
parent 6b04005d08
commit 62fad5df87

View File

@ -362,8 +362,10 @@ int TransferListWidget::updateTorrent(int row) {
case torrent_status::seeding: case torrent_status::seeding:
if(h.upload_payload_rate() > 0) { if(h.upload_payload_rate() > 0) {
s = STATE_SEEDING; s = STATE_SEEDING;
listModel->setData(listModel->index(row, TR_NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/skin/uploading.png"))), Qt::DecorationRole);
} else { } else {
s = STATE_STALLED_UP; s = STATE_STALLED_UP;
listModel->setData(listModel->index(row, TR_NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/skin/stalledUP.png"))), Qt::DecorationRole);
} }
} }
// Common to both downloads and uploads // Common to both downloads and uploads