From d3487c031e8c208263278e03556894411e7c3a8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Mon, 7 Sep 2026 03:23:42 +0200 Subject: [PATCH] Clean up progress bar. --- oracle/src/pages.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/oracle/src/pages.cpp b/oracle/src/pages.cpp index ecee1f914..3d9397988 100644 --- a/oracle/src/pages.cpp +++ b/oracle/src/pages.cpp @@ -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(); } });