From: Keith Packard Date: Fri, 6 Sep 2013 05:56:11 +0000 (-0700) Subject: altosui: Fix 'Graph Flight' button in landed dialog X-Git-Tag: 1.2.9.4~84 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=ffdf82445817d1c97699f7de82534420b87d0ea7 altosui: Fix 'Graph Flight' button in landed dialog Telemetry file reading was broken (oops!) Signed-off-by: Keith Packard --- diff --git a/altosui/AltosLanded.java b/altosui/AltosLanded.java index 139b81b6..cc2053e0 100644 --- a/altosui/AltosLanded.java +++ b/altosui/AltosLanded.java @@ -250,7 +250,7 @@ public class AltosLanded extends JComponent implements AltosFlightDisplay, Actio states = new AltosEepromFile(in); } else if (filename.endsWith("telem")) { FileInputStream in = new FileInputStream(file); - states = null; // new AltosTelemetryIterable(in); + states = new AltosTelemetryFile(in); } else { throw new FileNotFoundException(filename); }