diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html index 161a9161..07e98c19 100644 --- a/Htmldocs/release_notes.html +++ b/Htmldocs/release_notes.html @@ -41,6 +41,7 @@
  • [fix] Overview graphs now show last day on charts for timezones near GMT.
  • [fix] Welcome page calculation of days since last import fixed.
  • [fix] Oximetry import from file now remembers last directory imported from.
  • +
  • [fix] Correct pressure reported on Welcome page for VAuto-S machines.
  • Changes and fixes in OSCAR v1.1.1 diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index 1b165a90..df021a40 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -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());