From 236dbcfb4a57d73324dccbd891e1d4e2c0cad8b6 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 1 Oct 2008 07:02:49 +0000 Subject: [PATCH] - attempt to fix #276196 --- src/FinishedTorrents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FinishedTorrents.cpp b/src/FinishedTorrents.cpp index dccb28101..a1859bb0f 100644 --- a/src/FinishedTorrents.cpp +++ b/src/FinishedTorrents.cpp @@ -280,7 +280,7 @@ void FinishedTorrents::updateFinishedList(){ } } if(h.is_paused()) continue; - if(h.state() == torrent_status::downloading || (h.state() != torrent_status::checking_files && h.state() != torrent_status::queued_for_checking && !h.is_seed())) { + if(h.state() == torrent_status::downloading || (h.state() != torrent_status::checking_files && h.state() != torrent_status::queued_for_checking && h.progress() < 1.)) { // What are you doing here? go back to download tab! int reponse = QMessageBox::question(this, tr("Incomplete torrent in seeding list"), tr("It appears that the state of '%1' torrent changed from 'seeding' to 'downloading'. Would you like to move it back to download list? (otherwise the torrent will simply be deleted)").arg(h.name()), QMessageBox::Yes | QMessageBox::No); if (reponse == QMessageBox::Yes) {