mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Position User flagging at end of event to match ResMed behaviour
This commit is contained in:
parent
926d5af10e
commit
15cb77fe45
@ -239,7 +239,11 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
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()));
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user