ProgressDialog: allow finished tasks to be re-displayed once restarted (#5412)

This commit is contained in:
Alexandru Ionut Tripon 2026-04-17 14:00:07 +00:00 committed by GitHub
commit e7a03d311c
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)