Fix the missing import progress dialog when forcing a rebuild.

Because opening a profile already had a progress dialog open, the import
process during a forced rebuild wasn't appearing, so it would look like
OSCAR was hanging for as long as the import took.

Temporarily hiding the profile progress dialog resolves the issue.
This commit is contained in:
sawinglogz 2019-12-27 22:29:18 -06:00
parent ba44887853
commit 4976d7077e

View File

@ -599,15 +599,18 @@ void Profile::LoadMachineData(ProgressDialog *progress)
if (loader) {
if (mach->version() < loader->Version()) {
qDebug() << "LoadMachineData data format error, machine version" << mach->version() << "loader version" << loader->Version();
progress->hide();
DataFormatError(mach);
progress->show();
} else {
try {
mach->Load(progress);
} catch (OldDBVersion& e) {
qDebug() << "LoadMachineData mach->load failure, machine version" << mach->version() << "loader version" << loader->Version();
Q_UNUSED(e)
progress->hide();
DataFormatError(mach);
progress->show();
}
}
} else {