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:
sawinglogz 2021-12-20 12:42:45 -05:00
parent c39a11d60a
commit 2c5d59e666
2 changed files with 11 additions and 2 deletions

View File

@ -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>

View File

@ -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();