darodriguezalv / mytracks

Automatically exported from code.google.com/p/mytracks
0 stars 0 forks source link

Cadence not showing when no heart rate / other similar anomalies #1239

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In com.google.android.apps.mytracks.ChartView (line 277):

This:

          if (!Double.isNaN(dataPoint[j])) {
            series[j].update(dataPoint[j + 1]);
          }

should be :

          if (!Double.isNaN(dataPoint[j+1])) {
            series[j].update(dataPoint[j + 1]);
          }

Original issue reported on code.google.com by w...@cowboycoders.org on 1 Feb 2013 at 7:23

GoogleCodeExporter commented 9 years ago
Thanks for debugging this. Will be in the next release.

Original comment by jshih@google.com on 27 Feb 2013 at 10:34

GoogleCodeExporter commented 9 years ago

Original comment by jshih@google.com on 28 Feb 2013 at 12:30