diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index 562bc339..790ea218 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -364,7 +364,7 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) time=start+tim[i]; if (first) { - if (num_points>5 && (time < minx)) continue; // Skip stuff before the start of our data window + if (num_points>15 && (time < minx)) continue; // Skip stuff before the start of our data window first=false; if (i>=sam) i-=sam; // Start with the previous sample (which will be in clipping area) time=start+tim[i]; diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index 7ff50c6e..f80a2892 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -106,7 +106,7 @@ void gXAxis::Plot(gGraphWindow & w,float scrx,float scry) } } if (fit_ticks==0) { - qDebug() << "gXAxis::Plot() Short days and zooming in too much screws this up."; + qDebug() << "gXAxis::Plot() Couldn't fit ticks.. Too short?" << minx << maxx << xx; return; } if ((div<0) || (div>divcnt)) { diff --git a/Graphs/glcommon.cpp b/Graphs/glcommon.cpp index a9d453a2..f6c19528 100644 --- a/Graphs/glcommon.cpp +++ b/Graphs/glcommon.cpp @@ -121,7 +121,7 @@ void DrawTextQueue(gGraphWindow & wid) if (wid.parentWidget()!=0) { QPainter painter(&wid); - + painter.setRenderHint(QPainter::HighQualityAntialiasing,true); // TODO.. Prerotate the 90degree stuff here and keep the matrix for all of these.. for (int i=0;i