From 217c71d1de17eb19ee79b80365355e1e5ccdc026 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Sun, 29 Mar 2020 19:21:34 -0400 Subject: [PATCH] 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! --- oscar/Graphs/gSessionTimesChart.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/Graphs/gSessionTimesChart.cpp b/oscar/Graphs/gSessionTimesChart.cpp index 53f052ed..b64373a2 100644 --- a/oscar/Graphs/gSessionTimesChart.cpp +++ b/oscar/Graphs/gSessionTimesChart.cpp @@ -669,7 +669,7 @@ void gUsageChart::populate(Day *day, int idx) { QVector & 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 & slices = cache[idx]; - float hours = day->hours(); + float hours = day->hours(m_machtype); for (auto & calc : calcitems) { ChannelID code = calc.code;