mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
REMOVED ALL DOTTED lINES SELECTIONS FROM FlowRate
This commit is contained in:
parent
62f0028f1a
commit
97fb26e12b
@ -2312,7 +2312,8 @@ void gGraphView::populateMenu(gGraph * graph)
|
|||||||
#if defined(ENABLE_ALWAYS_ON_ZERO_RED_LINE_FLOW_RATE)
|
#if defined(ENABLE_ALWAYS_ON_ZERO_RED_LINE_FLOW_RATE)
|
||||||
// if red line is always on then there is no need for the button to turn it on /off
|
// if red line is always on then there is no need for the button to turn it on /off
|
||||||
// skip creating UI to change value. or turn enabled off.
|
// skip creating UI to change value. or turn enabled off.
|
||||||
if (lc->code() == CPAP_FlowRate && dot.type == Calc_Zero) continue;
|
//if (lc->code() == CPAP_FlowRate && dot.type == Calc_Zero) continue;
|
||||||
|
if (lc->code() == CPAP_FlowRate) continue;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
schema::Channel &chan = schema::channel[dot.code];
|
schema::Channel &chan = schema::channel[dot.code];
|
||||||
|
@ -250,20 +250,21 @@ skipcheck:
|
|||||||
|
|
||||||
for (const auto & code : m_codes) {
|
for (const auto & code : m_codes) {
|
||||||
const schema::Channel & chan = schema::channel[code];
|
const schema::Channel & chan = schema::channel[code];
|
||||||
|
if (code != CPAP_FlowRate) {
|
||||||
addDotLine(DottedLine(code, Calc_Max,chan.calc[Calc_Max].enabled));
|
addDotLine(DottedLine(code, Calc_Max,chan.calc[Calc_Max].enabled));
|
||||||
|
}
|
||||||
if ((code != CPAP_FlowRate) && (code != CPAP_MaskPressure) && (code != CPAP_MaskPressureHi)) {
|
if ((code != CPAP_FlowRate) && (code != CPAP_MaskPressure) && (code != CPAP_MaskPressureHi)) {
|
||||||
addDotLine(DottedLine(code, Calc_Perc,chan.calc[Calc_Perc].enabled));
|
addDotLine(DottedLine(code, Calc_Perc,chan.calc[Calc_Perc].enabled));
|
||||||
addDotLine(DottedLine(code, Calc_Middle, chan.calc[Calc_Middle].enabled));
|
addDotLine(DottedLine(code, Calc_Middle, chan.calc[Calc_Middle].enabled));
|
||||||
}
|
}
|
||||||
if ((code != CPAP_Snore) && (code != CPAP_FlowLimit) && (code != CPAP_RDI) && (code != CPAP_AHI)) {
|
if ((code != CPAP_FlowRate) && (code != CPAP_Snore) && (code != CPAP_FlowLimit) && (code != CPAP_RDI) && (code != CPAP_AHI)) {
|
||||||
addDotLine(DottedLine(code, Calc_Min, chan.calc[Calc_Min].enabled));
|
addDotLine(DottedLine(code, Calc_Min, chan.calc[Calc_Min].enabled));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (m_codes[0] == CPAP_Leak) {
|
if (m_codes[0] == CPAP_Leak) {
|
||||||
addDotLine(DottedLine(CPAP_Leak, Calc_UpperThresh, schema::channel[CPAP_Leak].calc[Calc_UpperThresh].enabled));
|
addDotLine(DottedLine(CPAP_Leak, Calc_UpperThresh, schema::channel[CPAP_Leak].calc[Calc_UpperThresh].enabled));
|
||||||
} else if (m_codes[0] == CPAP_FlowRate) {
|
} else if (m_codes[0] == CPAP_FlowRate) {
|
||||||
//addDotLine(DottedLine(CPAP_FlowRate, Calc_Zero, schema::channel[CPAP_FlowRate].calc[Calc_Zero].enabled));
|
addDotLine(DottedLine(CPAP_FlowRate, Calc_Zero, schema::channel[CPAP_FlowRate].calc[Calc_Zero].enabled));
|
||||||
addDotLine(DottedLine(CPAP_FlowRate, Calc_Zero, false ));
|
|
||||||
#if defined(ENABLE_ALWAYS_ON_ZERO_RED_LINE_FLOW_RATE)
|
#if defined(ENABLE_ALWAYS_ON_ZERO_RED_LINE_FLOW_RATE)
|
||||||
//on set day force red line on.
|
//on set day force red line on.
|
||||||
m_dot_enabled[m_code][Calc_Zero] = true;
|
m_dot_enabled[m_code][Calc_Zero] = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user