Clean up progress bar.

This commit is contained in:
Lukas Brübach 2026-09-07 03:23:42 +02:00
parent 8f6f172169
commit d3487c031e

View file

@ -668,6 +668,10 @@ void LoadSetsPage::importFinished()
progressLabel->setText(tr("Parsing file (100%)"));
QTimer::singleShot(500, this, [this] {
if (wizard()->currentPage() == this) {
// Leave the page pristine: hide the completed load bar so a later
// Back from the save page doesn't show stale progress.
progressLabel->hide();
progressBar->hide();
wizard()->next();
}
});