diff options
author | Bdale Garbee <bdale@gag.com> | 2017-09-18 20:46:47 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2017-09-18 20:46:47 -0600 |
commit | 3ead5d54135003702f771191d2c53abb584d1695 (patch) | |
tree | 03f812123642d41215fbc67ff6a308fb2906d77a /altosui/AltosGraphUI.java | |
parent | b94d18396f050b61a5671b4239d2a3eb9b7a835c (diff) | |
parent | 216ea6388a75c46891dc4687a2eb0c97dc63b136 (diff) |
Merge branch 'branch-1.8' into debian
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; } } |