Skip to content

Commit

Permalink
Bugfix: charts were showing only the invalid TrackPoints.
Browse files Browse the repository at this point in the history
Introduced in fbc902e
  • Loading branch information
dennisguse committed Apr 13, 2020
1 parent e49a425 commit 35dec16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ private void drawPaths() {
for (int i = 0; i < seriesList.size(); i++) {
ChartValueSeries chartValueSeries = seriesList.get(i);

if (chartValueSeries.isChartPointValid(dataPoint)) {
if (!chartValueSeries.isChartPointValid(dataPoint)) {
continue;
}

Expand Down

0 comments on commit 35dec16

Please sign in to comment.