Fix Welcome page pressure numbers for VAuto-S

This commit is contained in:
Guy Scharf 2020-08-26 09:58:00 -07:00
parent ce18739d14
commit 628ddaa399
2 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,7 @@
<li>[fix] Overview graphs now show last day on charts for timezones near GMT.</li>
<li>[fix] Welcome page calculation of days since last import fixed.</li>
<li>[fix] Oximetry import from file now remembers last directory imported from.</li>
<li>[fix] Correct pressure reported on Welcome page for VAuto-S machines.</li>
</ul>
<p>
<b>Changes and fixes in OSCAR v1.1.1</b>

View File

@ -258,6 +258,9 @@ QString Welcome::GenerateCPAPHTML()
EventDataType pressure = day->percentile(pressChanID, perc/100.0);
html += tr("Your pressure was under %1 %2 for %3% of the time.").arg(pressure).arg(schema::channel[pressChanID].units()).arg(perc);
} else if (cpapmode == MODE_BILEVEL_FIXED) {
if (pressSettingChanID == CPAP_Pressure && p_profile->GetMachine(MT_CPAP)->info.brand==QObject::tr("ResMed")) {
pressSettingChanID = CPAP_IPAP;
}
EventDataType ipap = day->settings_max(pressSettingChanID);
EventDataType epap = day->settings_min(CPAP_EPAP);
html += tr("Your machine used a constant %1-%2 %3 of air.").arg(epap).arg(ipap).arg(schema::channel[pressChanID].units());