Fix overview graphs cropping top line

This commit is contained in:
Mark Watkins 2014-05-06 12:37:29 +10:00
parent af744d6752
commit 95fd5b9a7f
2 changed files with 3 additions and 3 deletions

View File

@ -172,6 +172,8 @@ void gLineChart::paint(gGraph &w, int left, int top, int width, int height)
return; return;
} }
top++;
// lines=w.lines(); // lines=w.lines();
EventDataType miny, maxy; EventDataType miny, maxy;
double minx, maxx; double minx, maxx;

View File

@ -396,7 +396,6 @@ void SummaryChart::paint(gGraph &w, int left, int top, int width, int height)
points->setSize(10); points->setSize(10);
GraphType graphtype = m_graphtype; GraphType graphtype = m_graphtype;
if (graphtype == GT_LINE || graphtype == GT_POINTS) { 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; qint64 xx = maxx - minx;
float days = double(xx) / 86400000.0; float days = double(xx) / 86400000.0;
EventDataType maxy; EventDataType maxy;
EventDataType miny; EventDataType miny;
@ -714,7 +712,7 @@ void SummaryChart::paint(gGraph &w, int left, int top, int width, int height)
GLuint col1 = col.rgba(); GLuint col1 = col.rgba();
GLuint col2 = m_colors[j].rgba(); GLuint col2 = m_colors[j].rgba();
px2 = px + barw; 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 more than 1 day between records, skip the vertical crud.
if ((px2 - lastX[j]) > barw + 1) { if ((px2 - lastX[j]) > barw + 1) {