Show machine (rx) changes only if there are CPAP machines in this profile.

This commit is contained in:
Seeker4 2019-08-28 15:22:31 -07:00
parent 22a8303836
commit 091253f03d

View File

@ -911,6 +911,11 @@ QString Statistics::GenerateMachineList()
}
QString Statistics::GenerateRXChanges()
{
// Generate list only if there are CPAP machines
QList<Machine *> cpap_machines = p_profile->GetMachines(MT_CPAP);
if (cpap_machines.isEmpty())
return "";
// do the actual data sorting...
updateRXChanges();