From 7a1af536b6026072f2ec8275c8560cf5e873b564 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 27 Dec 2008 10:07:03 +0000 Subject: [PATCH] - Fixed start action --- src/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index a83c7514e..e4ced5de8 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -1325,7 +1325,7 @@ void GUI::on_actionStart_triggered() { QString hash; foreach(hash, hashes) { QTorrentHandle h = BTSession->getTorrentHandle(hash); - if(!h.is_paused()){ + if(h.is_paused()){ h.resume(); if(inDownloadList) { downloadingTorrentTab->resumeTorrent(hash);