mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Fix missing oximetry and motion waveforms on Overview pages.
Motion channels reported by oximeters and oximetry channels reported by CPAPs weren't being calculated, so they'd always be blank when present.
This commit is contained in:
parent
c39a11d60a
commit
2c5d59e666
@ -29,6 +29,7 @@
|
||||
<li>[new] Add 95% flow limitation to Therapy Efficacy section on Statistics page.</li>
|
||||
<li>[new] Add date range option to Statistics page.</li>
|
||||
<li>[new] Improve appearance and operation of event types and graphs comboboxes on Daily and Overview pages.</li>
|
||||
<li>[fix] Fix missing oximetry and motion waveforms on Overview pages.</li>
|
||||
<li>[fix] Correct SleepStyle machines sometimes identified as Icon machines.</li>
|
||||
<li>[fix] Improve event flag position in flow graph for DV6 machines.</li>
|
||||
<li>[fix] --datadir option now allows fully qualified paths on Mac and Linux.</li>
|
||||
|
@ -68,8 +68,16 @@ void gSummaryChart::SetDay(Day *unused_day)
|
||||
Q_UNUSED(unused_day)
|
||||
Layer::SetDay(nullptr);
|
||||
|
||||
firstday = p_profile->FirstDay(m_machtype);
|
||||
lastday = p_profile->LastDay(m_machtype);
|
||||
if (m_machtype != MT_CPAP) {
|
||||
// Channels' machine types are not terribly reliable: oximetry channels can be reported by a CPAP,
|
||||
// and position channels can be reported by an oximeter. So look for any days with data.
|
||||
firstday = p_profile->FirstDay();
|
||||
lastday = p_profile->LastDay();
|
||||
} else {
|
||||
// But CPAP channels (like pressure settings) can only be reported by a CPAP.
|
||||
firstday = p_profile->FirstDay(m_machtype);
|
||||
lastday = p_profile->LastDay(m_machtype);
|
||||
}
|
||||
|
||||
dayindex.clear();
|
||||
daylist.clear();
|
||||
|
Loading…
Reference in New Issue
Block a user