This hopefully fixes SummaryChart line 'nibbling' on mac

This commit is contained in:
Mark Watkins 2011-12-28 17:45:48 +10:00
parent 0b7916e1aa
commit 08654561fd
2 changed files with 4 additions and 3 deletions

View File

@ -475,9 +475,9 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
py2+=j;
if (lastdaygood) {
lines->add(lastX[j],lastY[j],px,py2,m_colors[j]);
lines->add(px,py2,px2,py2,col);
lines->add(px,py2,px2+1,py2,col);
} else {
lines->add(x1,py2,x2,py2,col);
lines->add(x1,py2,x2+1,py2,col);
}
lastX[j]=px2;
lastY[j]=py2;

View File

@ -71,7 +71,8 @@ class SummaryChart:public Layer
QHash<int,EventDataType> m_hours;
QHash<int,Day *> m_days;
GLShortBuffer *quads,*lines;
GLShortBuffer *quads;
GLShortBuffer *lines;
bool m_empty;
int m_fday;
QString m_label;