From 66f50cda665f0d4e1df83292e6978fdf931a0085 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Sun, 15 Jan 2023 20:46:04 -0500 Subject: [PATCH] inhibit Duplicate Overview Graphs When Ahi Pressure Enabled In Preference sDayOnIssue --- oscar/overview.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/oscar/overview.cpp b/oscar/overview.cpp index e376b5ec..661c154c 100644 --- a/oscar/overview.cpp +++ b/oscar/overview.cpp @@ -310,6 +310,11 @@ void Overview::CreateAllGraphs() { G->AddLayer(sc); chartsToBeMonitored.insert(sc,G); } else if (chan->type() == schema::WAVEFORM) { + if ((code==CPAP_AHI)||(code==CPAP_Pressure) ) { + DEBUGF O("SKIPPING") NAME(code) Q(code); + //skip if channel is for AHI. + continue; + } sc= new gSummaryChart(code, chan->machtype()); G->AddLayer(sc); chartsToBeMonitored.insert(sc,G);