diff options
author | Keith Packard <keithp@keithp.com> | 2017-05-27 23:35:02 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-05-27 23:35:02 -0700 |
commit | c0af53c03d7945f7400496216ee259d73fb04843 (patch) | |
tree | 2f329223c6323c9a188b99f36f50a5fd53cbe776 /micropeak/MicroRaw.java | |
parent | 9e17d3be199d14473d8a7f9b899c290518b879a6 (diff) |
micropeak: Use altoslib/altosuilib flight analysis bits
Remove custom graph and stats bits and share bits with altosui.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'micropeak/MicroRaw.java')
-rw-r--r-- | micropeak/MicroRaw.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/micropeak/MicroRaw.java b/micropeak/MicroRaw.java index f00d7ea3..5ff4f6b5 100644 --- a/micropeak/MicroRaw.java +++ b/micropeak/MicroRaw.java @@ -30,7 +30,7 @@ public class MicroRaw extends JTextArea { StringWriter sw = new StringWriter(); try { data.export(sw); - setRows(data.pressures.length + 1); + setRows(data.length()); setText(sw.toString()); } catch (IOException ie) { setText(String.format("Error writing data: %s", ie.getMessage())); |