From 7607a31fe983b73408db4e8608eae2fd055de14e Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 1 Aug 2011 18:27:03 +1000 Subject: [PATCH] Flow rate yticker scale -1 to +1 --- Graphs/gYAxis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index 8bf78544..a2496abd 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -65,7 +65,7 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry) maxy=ceil(maxy); if (maxy<1) maxy=1; miny=floor(miny); - if (miny<1) miny=0; + //if (miny<1) miny=0; }