diff --git a/Changelog b/Changelog index 286567f67..9b28dc135 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,6 @@ * Unknown - Christophe Dumez - v1.2.1 - BUGFIX: Fixed possible crash when deleting a torrent permanently + - BUGFIX: Queued_for_checking torrents were not displayed as checking in seeding list * Wed Oct 29th 2008 - Christophe Dumez - v1.2.0 - FEATURE: Torrent queueing system (with priorities) diff --git a/src/FinishedTorrents.cpp b/src/FinishedTorrents.cpp index 07bb49d67..5717061a8 100644 --- a/src/FinishedTorrents.cpp +++ b/src/FinishedTorrents.cpp @@ -295,7 +295,7 @@ void FinishedTorrents::updateFinishedList(){ } continue; } - if(h.state() == torrent_status::checking_files){ + if(h.state() == torrent_status::checking_files || h.state() == torrent_status::queued_for_checking){ finishedListModel->setData(finishedListModel->index(row, F_NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/time.png"))), Qt::DecorationRole); setRowColor(row, QString::fromUtf8("grey")); continue;