mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix Welcome page pressure numbers for VAuto-S
This commit is contained in:
parent
ce18739d14
commit
628ddaa399
@ -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>
|
||||
|
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user