From a2ea26a9a03b8e844b5e0ee750e17cf85736a534 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 1 Aug 2011 15:45:34 +1000 Subject: [PATCH] gLineChart fixes --- Graphs/gLineChart.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index ce72ae8f..040a9ff7 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -78,7 +78,7 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) } double xx=maxx-minx; - double xmult=double(width)/xx; + double xmult=double(width-1)/xx; EventDataType yy=maxy-miny; EventDataType ymult=EventDataType(height)/yy; // time to pixel conversion multiplier @@ -286,10 +286,6 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) qDebug() << "gLineChart::Plot() minz<0 should never happen!! minz =" << minz; minz=0; } - if (maxz>width) { - qDebug() << "gLineChart::Plot() maxz>width" << "maxz = " << maxz << "width =" << width << "scrx =" <max_drawlist_size) { qDebug() << "gLineChart::Plot() maxz>max_drawlist_size!!!! maxz = " << maxz << " max_drawlist_size =" << max_drawlist_size; maxz=max_drawlist_size; @@ -305,6 +301,10 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) } } // Plot compressed accelerated vertex list + if (maxz>width) { + qDebug() << "gLineChart::Plot() maxz exceeded graph width" << "maxz = " << maxz << "width =" << width << "scrx =" <