Browse Source

Simplify busy wait.

adaptive-webui-19844
sledgehammer999 11 years ago
parent
commit
74a1cce46c
  1. 6
      src/addnewtorrentdialog.cpp

6
src/addnewtorrentdialog.cpp

@ -653,9 +653,9 @@ void AddNewTorrentDialog::accept()
void AddNewTorrentDialog::reject() { void AddNewTorrentDialog::reject() {
if (m_isMagnet) { if (m_isMagnet) {
disconnect(this, SLOT(updateMetadata(const QTorrentHandle&))); disconnect(this, SLOT(updateMetadata(const QTorrentHandle&)));
while (true) { // Force cancel while (m_convertingMagnet) {
if (!m_convertingMagnet) // HACK ???
break; // Force cancel
} }
setMetadataProgressIndicator(false); setMetadataProgressIndicator(false);
QBtSession::instance()->deleteTorrent(m_hash, true); QBtSession::instance()->deleteTorrent(m_hash, true);

Loading…
Cancel
Save