mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
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:
parent
7239923dbd
commit
217c71d1de
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user