From 23e03a57008e65c3cc22a6abf68dea11a188fa21 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 2 Nov 2008 13:50:42 +0000 Subject: [PATCH] Queued_for_checking torrents were not displayed as checking in seeding list --- Changelog | 1 + src/FinishedTorrents.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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;