diff options
author | Keith Packard <keithp@keithp.com> | 2013-09-02 23:10:23 -0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-09-02 23:11:52 -0600 |
commit | 528e2e41112cad8a81bccbb89c3bd202b818a506 (patch) | |
tree | 2c2076a5d1972681ba3300e9a44636b526efaa82 /altosui/AltosDescent.java | |
parent | 224a1e01bacb7db0076129906ed58e1c785e1b14 (diff) |
altoslib: More AltosState hacking
EasyMini graphs are looking good now.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosDescent.java')
-rw-r--r-- | altosui/AltosDescent.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/altosui/AltosDescent.java b/altosui/AltosDescent.java index 35efce16..e85717bb 100644 --- a/altosui/AltosDescent.java +++ b/altosui/AltosDescent.java @@ -245,7 +245,7 @@ public class AltosDescent extends JComponent implements AltosFlightDisplay { class Height extends DescentValue { void show (AltosState state, AltosListenerState listener_state) { - show(AltosConvert.height, state.height); + show(AltosConvert.height, state.height()); } public Height (GridBagLayout layout, int x, int y) { super (layout, x, y, "Height"); @@ -256,7 +256,7 @@ public class AltosDescent extends JComponent implements AltosFlightDisplay { class Speed extends DescentValue { void show (AltosState state, AltosListenerState listener_state) { - show(AltosConvert.speed, state.speed); + show(AltosConvert.speed, state.speed()); } public Speed (GridBagLayout layout, int x, int y) { super (layout, x, y, "Speed"); |