exporter: add ability to cancel exports (including a confirm to cancel if the

user closes the dialog mid-export)
This commit is contained in:
itsmattkc
2020-03-03 02:37:18 +11:00
parent 02909c6ba9
commit 0f5cd40c45
7 changed files with 112 additions and 30 deletions
+4 -1
View File
@@ -326,7 +326,10 @@ void RenderBackend::CancelQueue()
if (processor_busy_state_.at(i))
busy++;
}
qDebug() << this << "is waiting for" << busy << "busy workers";
if (busy) {
qDebug() << this << "is waiting for" << busy << "busy workers";
}
cancel_dialog_->RunIfWorkersAreBusy();
}