From 091253f03d5d6c78a6667d1499ddc8e4b88c4609 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Wed, 28 Aug 2019 15:22:31 -0700 Subject: [PATCH] Show machine (rx) changes only if there are CPAP machines in this profile. --- oscar/statistics.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index a412b3ce..765bc959 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -911,6 +911,11 @@ QString Statistics::GenerateMachineList() } QString Statistics::GenerateRXChanges() { + // Generate list only if there are CPAP machines + QList cpap_machines = p_profile->GetMachines(MT_CPAP); + if (cpap_machines.isEmpty()) + return ""; + // do the actual data sorting... updateRXChanges();