mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix overview graphs cropping top line
This commit is contained in:
parent
af744d6752
commit
95fd5b9a7f
@ -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;
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user