diff --git a/sleepyhead/Graphs/MinutesAtPressure.cpp b/sleepyhead/Graphs/MinutesAtPressure.cpp index 4a2b54b4..3ae92bec 100644 --- a/sleepyhead/Graphs/MinutesAtPressure.cpp +++ b/sleepyhead/Graphs/MinutesAtPressure.cpp @@ -221,6 +221,7 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r double p0, p1, p2, p3; QString label; + double s2; int widest_YAxis = 0; int mouseOverKey = 0; @@ -314,14 +315,17 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r // Plot IPAP Time at Pressure //////////////////////////////////////////////////////////////////// xp=left; - double lastyp = bottom - (double(ipap.times[min-1]) * ystep); + s2 = double(ipap.times[qMax(0, min-1)]/60.0); + if (s2 < 0) s2=0; + + double lastyp = bottom - (s2 * ystep); for (int i=min; iappearance->lineThickness())); - xp=left, lastyp = bottom - (double(epap.times[min]) * ystep); + s2 = double(epap.times[qMax(min,0)]/60.0); + xp=left, lastyp = bottom - (s2 * ystep); for (int i=min; iappearance->lineThickness())); } - yp = bottom - (double(p1) * ystep); + yp = bottom - qMax((double(p1) * ystep), 0.0); painter.drawLine(xp, lastyp, xp+xstep, yp); lastyp = yp; xp += xstep; - double s2 = qMax(CatmullRomSpline(p0, p1, p2, p3, 0.2),0.0f); + s2 = qMax(CatmullRomSpline(p0, p1, p2, p3, 0.2), 0.0f); yp = qMax(double(bottom-height), (bottom - (s2 * ystep))); painter.drawLine(xp, lastyp, xp+xstep, yp); lastyp = yp; xp += xstep; - s2 = qMax(CatmullRomSpline(p0, p1, p2, p3, 0.4),0.0f); + s2 = qMax(CatmullRomSpline(p0, p1, p2, p3, 0.4), 0.0f); yp = qMax(double(bottom-height), (bottom - (s2 * ystep))); painter.drawLine(xp, lastyp, xp+xstep, yp); lastyp = yp; xp += xstep; - s2 = qMax(CatmullRomSpline(p0, p1, p2, p3, 0.6),0.0f); + s2 = qMax(CatmullRomSpline(p0, p1, p2, p3, 0.6), 0.0f); yp = qMax(double(bottom-height), (bottom - (s2 * ystep))); painter.drawLine(xp, lastyp, xp+xstep, yp); xp+=xstep; lastyp = yp; - s2 = qMax(CatmullRomSpline(p0, p1, p2, p3, 0.8),0.0f); + s2 = qMax(CatmullRomSpline(p0, p1, p2, p3, 0.8), 0.0f); yp = qMax(double(bottom-height), (bottom - (s2 * ystep))); painter.drawLine(xp, lastyp, xp+xstep, yp); xp+=xstep;