diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index 43e59180..9c66d81b 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -172,6 +172,8 @@ void gLineChart::paint(gGraph &w, int left, int top, int width, int height) return; } + top++; + // lines=w.lines(); EventDataType miny, maxy; double minx, maxx; diff --git a/sleepyhead/Graphs/gSummaryChart.cpp b/sleepyhead/Graphs/gSummaryChart.cpp index 426c987d..1133e248 100644 --- a/sleepyhead/Graphs/gSummaryChart.cpp +++ b/sleepyhead/Graphs/gSummaryChart.cpp @@ -396,7 +396,6 @@ void SummaryChart::paint(gGraph &w, int left, int top, int width, int height) points->setSize(10); - GraphType graphtype = m_graphtype; if (graphtype == GT_LINE || graphtype == GT_POINTS) { @@ -424,7 +423,6 @@ void SummaryChart::paint(gGraph &w, int left, int top, int width, int height) qint64 xx = maxx - minx; float days = double(xx) / 86400000.0; - EventDataType maxy; EventDataType miny; @@ -714,7 +712,7 @@ void SummaryChart::paint(gGraph &w, int left, int top, int width, int height) GLuint col1 = col.rgba(); GLuint col2 = m_colors[j].rgba(); px2 = px + barw; - py2 = (top + height - 2) - h; + py2 = (top + height - 1) - h; // If more than 1 day between records, skip the vertical crud. if ((px2 - lastX[j]) > barw + 1) {