diff --git a/sleepyhead/Graphs/gLineOverlay.cpp b/sleepyhead/Graphs/gLineOverlay.cpp index 72de500e..90004ef6 100644 --- a/sleepyhead/Graphs/gLineOverlay.cpp +++ b/sleepyhead/Graphs/gLineOverlay.cpp @@ -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())); diff --git a/sleepyhead/SleepLib/calcs.cpp b/sleepyhead/SleepLib/calcs.cpp index 96f2509f..d117c686 100644 --- a/sleepyhead/SleepLib/calcs.cpp +++ b/sleepyhead/SleepLib/calcs.cpp @@ -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); } } }