Fix bar height on AHI and Usage charts in Overview when oximetry usage is longer than CPAP.

Thanks to spacewrench for identifying the issue and then tracking down the
offending code!
This commit is contained in:
sawinglogz 2020-03-29 19:21:34 -04:00
parent 7239923dbd
commit 217c71d1de

View File

@ -669,7 +669,7 @@ void gUsageChart::populate(Day *day, int idx)
{
QVector<SummaryChartSlice> & slices = cache[idx];
float hours = day->hours();
float hours = day->hours(m_machtype);
QColor cpapcolor = day->summaryOnly() ? QColor(128,128,128) : calcitems[0].color;
bool haveoxi = day->hasMachine(MT_OXIMETER);
@ -1264,7 +1264,7 @@ void gAHIChart::populate(Day *day, int idx)
{
QVector<SummaryChartSlice> & slices = cache[idx];
float hours = day->hours();
float hours = day->hours(m_machtype);
for (auto & calc : calcitems) {
ChannelID code = calc.code;