Fixed: Stalling interface when an error occurs when downloading, see #279

--HG--
branch : develop
This commit is contained in:
kervala 2016-09-22 11:38:32 +02:00
parent 36b106e2ab
commit cd9abbcaae

View file

@ -492,6 +492,13 @@ void COperationDialog::onProgressSuccess(qint64 total)
void COperationDialog::onProgressFail(const QString &error)
{
QMessageBox::critical(this, tr("Error"), error);
{
QMutexLocker locker(&m_abortingMutex);
m_aborting = true;
}
processNextStep();
}
void COperationDialog::onDone()