From 74d8a0085405cba5bf920889160e22f71fbac2a3 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 21 Oct 2009 20:05:45 +0000 Subject: [PATCH] - Added support for new state: checking_resume_data --- src/downloadingTorrents.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/downloadingTorrents.cpp b/src/downloadingTorrents.cpp index d4e4638ba..697b2c393 100644 --- a/src/downloadingTorrents.cpp +++ b/src/downloadingTorrents.cpp @@ -573,6 +573,7 @@ bool DownloadingTorrents::updateTorrent(QTorrentHandle h) { switch(h.state()) { case torrent_status::checking_files: case torrent_status::queued_for_checking: + case torrent_status::checking_resume_data: DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/oxygen/time.png"))), Qt::DecorationRole); setRowColor(row, QString::fromUtf8("grey")); break;