fix rendering absolute basal line
This commit is contained in:
parent
6312b81e10
commit
d9cfe15b87
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ public class GraphData {
|
||||||
List<ScaledDataPoint> basalLineArray = new ArrayList<>();
|
List<ScaledDataPoint> basalLineArray = new ArrayList<>();
|
||||||
List<ScaledDataPoint> absoluteBasalLineArray = new ArrayList<>();
|
List<ScaledDataPoint> absoluteBasalLineArray = new ArrayList<>();
|
||||||
double lastLineBasal = 0;
|
double lastLineBasal = 0;
|
||||||
double lastAbsoluteLineBasal = 0;
|
double lastAbsoluteLineBasal = -1;
|
||||||
double lastBaseBasal = 0;
|
double lastBaseBasal = 0;
|
||||||
double lastTempBasal = 0;
|
double lastTempBasal = 0;
|
||||||
for (long time = fromTime; time < toTime; time += 60 * 1000L) {
|
for (long time = fromTime; time < toTime; time += 60 * 1000L) {
|
||||||
|
|
Loading…
Reference in a new issue