diff options
author | Keith Packard <keithp@keithp.com> | 2014-06-11 18:46:47 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-06-11 18:46:47 -0700 |
commit | db2443fdbf65b65703217174303027c439124a83 (patch) | |
tree | dd18a92bddd7d39f2a37c46c045e06767fcf0a99 /telegps/TeleGPSGraphUI.java | |
parent | ac33ca137551e32235cd2a0304da4b5e7af51a44 (diff) |
altosuilib: Rewrite map GUI bits
Use a single large Canvas and draw images on top by hand.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'telegps/TeleGPSGraphUI.java')
-rw-r--r-- | telegps/TeleGPSGraphUI.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/telegps/TeleGPSGraphUI.java b/telegps/TeleGPSGraphUI.java index b7fc4caa..fbc9657e 100644 --- a/telegps/TeleGPSGraphUI.java +++ b/telegps/TeleGPSGraphUI.java @@ -38,7 +38,7 @@ public class TeleGPSGraphUI extends AltosUIFrame JTabbedPane pane; AltosGraph graph; AltosUIEnable enable; - AltosSiteMap map; + AltosUIMap map; AltosState state; AltosFlightStats stats; AltosGraphDataSet graphDataSet; @@ -69,7 +69,7 @@ public class TeleGPSGraphUI extends AltosUIFrame graph = new AltosGraph(enable, stats, graphDataSet); statsTable = new AltosFlightStatsTable(stats); - map = new AltosSiteMap(); + map = new AltosUIMap(); pane.add("Flight Graph", graph.panel); pane.add("Configure Graph", enable); |