mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix Selection AHI glitch
This commit is contained in:
parent
31ee980d0c
commit
b5af7876db
@ -164,6 +164,8 @@ skipcheck:
|
|||||||
|
|
||||||
for (int i=0; i < available.size(); ++i) {
|
for (int i=0; i < available.size(); ++i) {
|
||||||
ChannelID code = available.at(i);
|
ChannelID code = available.at(i);
|
||||||
|
if (!m_day->channelExists(code)) continue;
|
||||||
|
|
||||||
|
|
||||||
schema::Channel * chan = &schema::channel[code];
|
schema::Channel * chan = &schema::channel[code];
|
||||||
gLineOverlayBar * lob = nullptr;
|
gLineOverlayBar * lob = nullptr;
|
||||||
@ -991,9 +993,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
ahilist.push_back(CPAP_ClearAirway);
|
ahilist.push_back(CPAP_ClearAirway);
|
||||||
|
|
||||||
QList<ChannelID> extras;
|
QList<ChannelID> extras;
|
||||||
ahilist.push_back(CPAP_NRI);
|
extras.push_back(CPAP_NRI);
|
||||||
ahilist.push_back(CPAP_UserFlag1);
|
extras.push_back(CPAP_UserFlag1);
|
||||||
ahilist.push_back(CPAP_UserFlag2);
|
extras.push_back(CPAP_UserFlag2);
|
||||||
|
|
||||||
double sum = 0;
|
double sum = 0;
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
@ -1025,9 +1027,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
|
|
||||||
double f = double(cnt) / hours; // / (sum / 3600.0);
|
double f = double(cnt) / hours; // / (sum / 3600.0);
|
||||||
QString txt = QObject::tr("Duration %1:%2:%3").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')).arg(s,2,10,QChar('0')) + " "+
|
QString txt = QObject::tr("Duration %1:%2:%3").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')).arg(s,2,10,QChar('0')) + " "+
|
||||||
QObject::tr("AHI %1").arg(f,0,'f',2) +" " +
|
QObject::tr("AHI %1").arg(f,0,'f',2);// +" " +
|
||||||
QObject::tr("Events %1").arg(cnt) + " " +
|
// QObject::tr("Events %1").arg(cnt) + " " +
|
||||||
QObject::tr("Hours %1").arg(hours,0,'f',2);
|
// QObject::tr("Hours %1").arg(hours,0,'f',2);
|
||||||
w.renderText(txt,left,top-4);
|
w.renderText(txt,left,top-4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
<br/>
|
<br/>
|
||||||
<b>New features & bug fixes in v0.9.7</b><br/>
|
<b>New features & bug fixes in v0.9.7</b><br/>
|
||||||
<list>
|
<list>
|
||||||
|
<li>New Graph: Time at Pressure</li>
|
||||||
<li>Less ugly code hardwiring and more automatic smarts, plus better channel color and name consistencies underneath.</li>
|
<li>Less ugly code hardwiring and more automatic smarts, plus better channel color and name consistencies underneath.</li>
|
||||||
<li>Daily panel (left) Sidebar can be toggled on/off with F9</li>
|
<li>Daily panel (left) Sidebar can be toggled on/off with F9</li>
|
||||||
<li>Calendar can now be toggled on/off with f10, your preferences will be kept</li>
|
<li>Calendar can now be toggled on/off with f10, your preferences will be kept</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user