Browse Source

Always override AddTorrentsInPause setting when downloading in the background.

adaptive-webui-19844
sledgehammer999 11 years ago
parent
commit
51cde405f9
  1. 2
      src/addnewtorrentdialog.cpp

2
src/addnewtorrentdialog.cpp

@ -278,7 +278,7 @@ bool AddNewTorrentDialog::loadMagnet(const QString &magnet_uri) @@ -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);

Loading…
Cancel
Save