Browse Source

- Fixed start action

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
7a1af536b6
  1. 2
      src/GUI.cpp

2
src/GUI.cpp

@ -1325,7 +1325,7 @@ void GUI::on_actionStart_triggered() { @@ -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);

Loading…
Cancel
Save