mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
This hopefully fixes SummaryChart line 'nibbling' on mac
This commit is contained in:
parent
0b7916e1aa
commit
08654561fd
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user