summaryrefslogtreecommitdiff
path: root/altosui/AltosEepromDownload.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-03-27 18:24:51 -0700
committerKeith Packard <keithp@keithp.com>2012-03-27 18:24:51 -0700
commit0952224c36eba25db34bd147d2d579c66b15bbf8 (patch)
tree67483ba9652774ab6c4f22f943b97c50d7bf76dd /altosui/AltosEepromDownload.java
parent7dd1d62676c1e605fe69a4c0acfe7638c6b79aa5 (diff)
altosui: Change flight data saving UI to separate download/delete selections
First pop up a dialog to select flights for download. Download them. Then, after that, pop up a *new* dialog to select flights for delete. Offer to delete all of the downloaded flights by default. Then delete the flights. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosEepromDownload.java')
-rw-r--r--altosui/AltosEepromDownload.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosEepromDownload.java b/altosui/AltosEepromDownload.java
index e7e52466..40c98bfd 100644
--- a/altosui/AltosEepromDownload.java
+++ b/altosui/AltosEepromDownload.java
@@ -351,7 +351,7 @@ public class AltosEepromDownload implements Runnable {
for (AltosEepromLog log : flights) {
parse_exception = null;
- if (log.download) {
+ if (log.selected) {
monitor.reset();
CaptureLog(log);
}