diff options
author | Bdale Garbee <bdale@gag.com> | 2017-09-18 20:35:00 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2017-09-18 20:35:00 -0600 |
commit | b12e982259817328e348f1aaa91c5c824891e7b9 (patch) | |
tree | 52ae2d2068fd637dd03938d592e8a7492e49ab9f /altosui/AltosGraphUI.java | |
parent | b1cf0dab1e28433e06ab02cec033951ea0149ea3 (diff) | |
parent | e87d56b665ca30a3e5920c23cd60c99b84341aa2 (diff) |
Merge branch 'master' into branch-1.8
Diffstat (limited to 'altosui/AltosGraphUI.java')
-rw-r--r-- | altosui/AltosGraphUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java index f6c906c6..042f9277 100644 --- a/altosui/AltosGraphUI.java +++ b/altosui/AltosGraphUI.java @@ -48,7 +48,6 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt if (flight_series.gps_series != null) { for (AltosGPSTimeValue gtv : flight_series.gps_series) { - gtv_last = gtv; AltosGPS gps = gtv.gps; if (gps != null && gps.locked && @@ -57,6 +56,7 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt map = new AltosUIMap(); map.show(gps, (int) flight_series.value_before(AltosFlightSeries.state_name, gtv.time)); this.gps = gps; + gtv_last = gtv; has_gps = true; } } |