From 51cde405f94fc8e4fa05d75631d4985fb3c0c37c Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Sun, 1 Sep 2013 16:14:15 +0300 Subject: [PATCH] Always override AddTorrentsInPause setting when downloading in the background. --- src/addnewtorrentdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addnewtorrentdialog.cpp b/src/addnewtorrentdialog.cpp index 976d6dca7..7e77a4ee9 100644 --- a/src/addnewtorrentdialog.cpp +++ b/src/addnewtorrentdialog.cpp @@ -278,7 +278,7 @@ bool AddNewTorrentDialog::loadMagnet(const QString &magnet_uri) // Temporary override of addInPause setting bool old_addInPause = pref.addTorrentsInPause(); - pref.addTorrentsInPause(!ui->start_torrent_cb->isChecked()); + pref.addTorrentsInPause(false); pref.sync(); QBtSession::instance()->addMagnetUri(m_url, false);