Bug fix for interval markers: must divide by 60.0, not 60,

to get floating point division.
This commit is contained in:
Sean C. Rhea
2007-09-18 17:23:39 +00:00
parent 32dc259642
commit fbff0d6df1

View File

@@ -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;
}