Position User flagging at end of event to match ResMed behaviour

This commit is contained in:
Mark Watkins 2014-07-20 14:47:32 +10:00
parent 926d5af10e
commit 15cb77fe45
2 changed files with 6 additions and 2 deletions

View File

@ -239,7 +239,11 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion &region)
painter.drawLine(x1, z, x1, z - 12);
}
if (xx < (1800000)) {
if (xx < 300000) {
QString lab = schema::channel[m_code].fullname();
GetTextExtent(lab, x, y);
w.renderText(lab, x1 - (x / 2)+2, top - y + (3 * w.printScaleY()));
} else if (xx < (3600000)) {
if (!hover) {
GetTextExtent(m_label, x, y);
w.renderText(m_label, x1 - (x / 2)+2, top - y + (3 * w.printScaleY()));

View File

@ -759,7 +759,7 @@ void FlowParser::flagEvents()
uf1 = m_session->AddEventList(CPAP_UserFlag1, EVL_Event);
}
uf1->AddEvent(et - len / 2, dur);
uf1->AddEvent(et, dur);
}
}
}