diff --git a/src/Icons/skin/queued.png b/src/Icons/skin/queued.png index 465117a81..125d0e5c4 100644 Binary files a/src/Icons/skin/queued.png and b/src/Icons/skin/queued.png differ 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)); }