From fbff0d6df132dea4c4240399d2f7ddca5c51238b Mon Sep 17 00:00:00 2001 From: "Sean C. Rhea" Date: Tue, 18 Sep 2007 17:23:39 +0000 Subject: [PATCH] Bug fix for interval markers: must divide by 60.0, not 60, to get floating point division. --- src/gui/AllPlot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/AllPlot.cpp b/src/gui/AllPlot.cpp index 6648d5576..e335ed5dc 100644 --- a/src/gui/AllPlot.cpp +++ b/src/gui/AllPlot.cpp @@ -124,7 +124,7 @@ AllPlot::recalc() //Figure out when and if we have a new interval.. if(lastInterval != interArray[i]) { lastInterval = interArray[i]; - interList.append(secs/60); + interList.append(secs/60.0); } ++i; }