diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index 109a170e..4ac6c8d4 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -266,7 +266,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) int wid, h; GetTextExtent(text, wid, h); - w.renderText(text, left + width/2 - wid/2, top -h); + w.renderText(text, left + width/2 - wid/2, top-h+4); } } diff --git a/sleepyhead/Graphs/gLineOverlay.cpp b/sleepyhead/Graphs/gLineOverlay.cpp index 81502197..c90de2c6 100644 --- a/sleepyhead/Graphs/gLineOverlay.cpp +++ b/sleepyhead/Graphs/gLineOverlay.cpp @@ -352,9 +352,10 @@ void gLineOverlaySummary::paint(QPainter &painter, gGraph &w, const QRegion ® if ((w.graphView()->selectionInProgress() || w.graphView()->metaSelect()) && (!w.selDurString().isEmpty())) { a = QObject::tr("Duration")+": "+w.selDurString(); } else { - - a = QObject::tr("Events") + ": " + QString::number(cnt) + ", " + + if (!w.graphView()->metaSelect()) { + a = QObject::tr("Events") + ": " + QString::number(cnt) + ", " + QObject::tr("Duration") + " " + QString().sprintf("%02i:%02i:%02i", h, m, s) + ", " + m_text + ": " + QString::number(val, 'f', 2); + } } if (isSpan) { float sph;