From 600308aaa1ac78b47a0e17c048ded07a26a19ae9 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 14 Jul 2008 19:33:10 +0000 Subject: [PATCH] - Updated queued icon --- src/Icons/skin/queued.png | Bin 711 -> 493 bytes src/downloadingTorrents.cpp | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Icons/skin/queued.png b/src/Icons/skin/queued.png index 465117a815ddb7b7815fd264186bb29dc6407bf5..125d0e5c4d372d6a163067f1054bb9b7dc138382 100644 GIT binary patch delta 478 zcmV<40U`d!1?>Zn8Gi%-006c6H|hWY00DDSM?wIu&K&6g0007FOGiWi|A&vvzW@LL z32;bRa{vGXC556IdF~(^lJjjTx8_aV!s!5LWRm+FZjUQ9;k#q zh-Lw(V$EA#bKH!><_bySd(sC}dd@qZHY;M$GtOBozE6IqAffn`CNcZT0NX_D;iQwr z%ga@Pe;9OMaA0JiJ^ zW9f%l+vgkYXqImqqc1EtW>(3QN8lHaxYGELo_c+K^r>Im9dY^ae0MBg;P)I5OuobyE%OtqIfkL1u{932}5r3?)puxtmL#WD(+ zHPqY^5|sVT+SEV53II4hlUK54w82VX#H+(^2m+yLnwqqQ44pEQ5b`2e0t++><(g13 zC2QOkrO8WYCbtgusa`sho%xMLo9DuER$Z9Wpzlc+ToORT{WS|J@6YId@$4n12uDqvVQpL7(!BSD}ZypXc)%Za9De+$5SUk zm`Y_0u48XIj%~S)1hi>Qo2V+v`8xS}%?f?J)07*qoM6N<$f@X*^0ssI2 diff --git a/src/downloadingTorrents.cpp b/src/downloadingTorrents.cpp index 29421ccba..fb2293492 100644 --- a/src/downloadingTorrents.cpp +++ b/src/downloadingTorrents.cpp @@ -556,7 +556,7 @@ void DownloadingTorrents::updateDlList() { DLListModel->setData(DLListModel->index(row, PRIORITY), QVariant((int)BTSession->getDlTorrentPriority(hash))); if(h.is_paused() && BTSession->isDownloadQueued(hash)) { qDebug("Download queued"); - DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/time.png"))), Qt::DecorationRole); + DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/skin/queued.png"))), Qt::DecorationRole); if(!downloadList->isColumnHidden(ETA)) { DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); }