[Backport release-11.x] ProgressDialog: allow finished tasks to be re-displayed once restarted (#5422)

This commit is contained in:
Alexandru Ionut Tripon 2026-04-19 23:34:46 +03:00 committed by GitHub
commit 2e88dfb98a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -252,10 +252,7 @@ void ProgressDialog::changeStepProgress(TaskStepProgress const& task_progress)
task_bar->setValue(mapped_current);
task_bar->setStatus(task_progress.status);
task_bar->setDetails(task_progress.details);
if (task_progress.isDone()) {
task_bar->setVisible(false);
}
task_bar->setVisible(!task_progress.isDone());
}
void ProgressDialog::changeProgress(qint64 current, qint64 total)