mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Update PRS1 loader to respect new preference for warnings on untested machines.
This commit is contained in:
parent
9521de7e18
commit
fdd1b658a2
@ -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)) {
|
||||
|
Loading…
Reference in New Issue
Block a user