Update PRS1 loader to respect new preference for warnings on untested machines.

This commit is contained in:
sawinglogz 2019-12-29 22:09:46 -06:00
parent 9521de7e18
commit fdd1b658a2

View File

@ -799,9 +799,10 @@ Machine* PRS1Loader::CreateMachineFromProperties(QString propertyfile)
// This time supply the machine object so it can populate machine properties..
PeekProperties(m->info, propertyfile, m);
if (!m->untested() && !s_PRS1ModelInfo.IsTested(props)) {
m->setUntested(true);
if (!s_PRS1ModelInfo.IsTested(props)) {
qDebug() << info.modelnumber << "untested";
if (p_profile->session->warnOnUntestedMachine() && !m->untested()) {
m->setUntested(true); // don't warn the user more than once
#ifndef UNITTEST_MODE
QMessageBox::information(QApplication::activeWindow(),
QObject::tr("Machine Untested"),
@ -811,6 +812,7 @@ Machine* PRS1Loader::CreateMachineFromProperties(QString propertyfile)
#endif
}
}
// Mark the machine in the profile as unsupported.
if (!s_PRS1ModelInfo.IsSupported(props)) {