From faed0ba45abc091517ed780a1098252d929a6db3 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 24 Jun 2010 18:18:40 +0000 Subject: [PATCH] Another magnet fix --- src/torrentadditiondlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torrentadditiondlg.cpp b/src/torrentadditiondlg.cpp index 9ceddc5cf..3d6d7bac4 100644 --- a/src/torrentadditiondlg.cpp +++ b/src/torrentadditiondlg.cpp @@ -430,7 +430,7 @@ void torrentAdditionDialog::renameSelectedFile() { save_path = save_path.replace("\\", "/"); #endif save_path = misc::expandPath(save_path); - if(t->num_files() == 1) { + if(!is_magnet && t->num_files() == 1) { new_path = QFileDialog::getSaveFileName(this, tr("Choose save path"), save_path); } else { const QDir saveDir(save_path);