Fix Selection AHI glitch

This commit is contained in:
Mark Watkins 2014-08-12 05:00:18 +10:00
parent 31ee980d0c
commit b5af7876db
2 changed files with 9 additions and 6 deletions

View File

@ -164,6 +164,8 @@ skipcheck:
for (int i=0; i < available.size(); ++i) {
ChannelID code = available.at(i);
if (!m_day->channelExists(code)) continue;
schema::Channel * chan = &schema::channel[code];
gLineOverlayBar * lob = nullptr;
@ -991,9 +993,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
ahilist.push_back(CPAP_ClearAirway);
QList<ChannelID> extras;
ahilist.push_back(CPAP_NRI);
ahilist.push_back(CPAP_UserFlag1);
ahilist.push_back(CPAP_UserFlag2);
extras.push_back(CPAP_NRI);
extras.push_back(CPAP_UserFlag1);
extras.push_back(CPAP_UserFlag2);
double sum = 0;
int cnt = 0;
@ -1025,9 +1027,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
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')) + " "+
QObject::tr("AHI %1").arg(f,0,'f',2) +" " +
QObject::tr("Events %1").arg(cnt) + " " +
QObject::tr("Hours %1").arg(hours,0,'f',2);
QObject::tr("AHI %1").arg(f,0,'f',2);// +" " +
// QObject::tr("Events %1").arg(cnt) + " " +
// QObject::tr("Hours %1").arg(hours,0,'f',2);
w.renderText(txt,left,top-4);
}

View File

@ -16,6 +16,7 @@
<br/>
<b>New features & bug fixes in v0.9.7</b><br/>
<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>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>