diff options
author | Keith Packard <keithp@keithp.com> | 2012-03-27 18:24:51 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-03-27 18:24:51 -0700 |
commit | 0952224c36eba25db34bd147d2d579c66b15bbf8 (patch) | |
tree | 67483ba9652774ab6c4f22f943b97c50d7bf76dd /altosui/AltosEepromDelete.java | |
parent | 7dd1d62676c1e605fe69a4c0acfe7638c6b79aa5 (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/AltosEepromDelete.java')
-rw-r--r-- | altosui/AltosEepromDelete.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosEepromDelete.java b/altosui/AltosEepromDelete.java index a9d77788..fcce8155 100644 --- a/altosui/AltosEepromDelete.java +++ b/altosui/AltosEepromDelete.java @@ -90,7 +90,7 @@ public class AltosEepromDelete implements Runnable { serial_line.start_remote(); for (AltosEepromLog log : flights) { - if (log.delete) { + if (log.selected) { DeleteLog(log); } } |