diff options
author | Keith Packard <keithp@keithp.com> | 2013-09-05 22:56:11 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-09-05 22:56:11 -0700 |
commit | ffdf82445817d1c97699f7de82534420b87d0ea7 (patch) | |
tree | 29d0df523c27aab068ae1e934f2e2f32f2ad31b9 | |
parent | 0e3edacceb169326b8f5727bb5737d8238e9e40b (diff) |
altosui: Fix 'Graph Flight' button in landed dialog
Telemetry file reading was broken (oops!)
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/AltosLanded.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |