summaryrefslogtreecommitdiff
path: root/altosui/AltosDataChooser.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-07-03 00:29:43 -0700
committerKeith Packard <keithp@keithp.com>2012-07-03 00:29:43 -0700
commitea957f9e6144f8411ac84ee2905700f55f5a6e8a (patch)
treef2fac4d8d9a941fdbd765835bd2f0836621f3890 /altosui/AltosDataChooser.java
parent933fc7e4c2f617e49e1cfdf45b83695290b51456 (diff)
altosui: Fix flight data download for TM. Look for MM flights when graphing
A couple of minor fixes, the first to not force the log format so that TM/Tm data will be downloaded correctly and the second to expand the set of files to include '.mega' files when plotting data. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosDataChooser.java')
-rw-r--r--altosui/AltosDataChooser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosDataChooser.java b/altosui/AltosDataChooser.java
index 0d629b3c..4bd51c39 100644
--- a/altosui/AltosDataChooser.java
+++ b/altosui/AltosDataChooser.java
@@ -77,7 +77,7 @@ public class AltosDataChooser extends JFileChooser {
frame = in_frame;
setDialogTitle("Select Flight Record File");
setFileFilter(new FileNameExtensionFilter("Flight data file",
- "telem", "eeprom"));
+ "telem", "eeprom", "mega"));
setCurrentDirectory(AltosUIPreferences.logdir());
}
}