inhibit Duplicate Overview Graphs When Ahi Pressure Enabled In Preference sDayOnIssue

This commit is contained in:
LoudSnorer 2023-01-15 20:46:04 -05:00
parent 27abdf7fcd
commit 66f50cda66

View File

@ -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);