mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix problem with S9 SD card warning incorrectly appearing on Welcome
This commit is contained in:
parent
1b67688b12
commit
10ac30f776
@ -44,11 +44,11 @@ void Welcome::refreshPage()
|
||||
|
||||
bool noMachines = mlist.isEmpty() && posmachines.isEmpty() && oximachines.isEmpty() && stgmachines.isEmpty();
|
||||
|
||||
bool showCardWarning = !noMachines;
|
||||
bool showCardWarning = noMachines;
|
||||
|
||||
// The SDCard warning does not need to be seen anymore for people who DON'T use ResMed S9's.. show first import and only when S9 is present
|
||||
for (auto & mach :mlist) {
|
||||
if (mach->series().compare("S9") == 0) showCardWarning = true;
|
||||
if (mach->brand().contains("ResMed") && mach->series().contains("S9")) showCardWarning = true;
|
||||
}
|
||||
|
||||
ui->S9Warning->setVisible(showCardWarning);
|
||||
|
Loading…
Reference in New Issue
Block a user