mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
Simplify busy wait.
This commit is contained in:
parent
6cdbf6f869
commit
74a1cce46c
@ -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…
Reference in New Issue
Block a user