diff options
| author | Keith Packard <keithp@keithp.com> | 2010-11-05 23:44:47 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2010-11-05 23:44:47 -0700 |
| commit | 474b8bd5b68e74757d8c99577d874f0aad49142d (patch) | |
| tree | f863a72a129a691c4e26c6e9478e275f2a227d0c /ao-tools/altosui/AltosStatusTable.java | |
| parent | 799361921d4f0351b1f93aa70ea3f378b2423409 (diff) | |
altosui: Split out flight monitoring to separate window
This creates a per-TD (or replay) window to contain the flight
monitoring information, allowing multiple monitors.
This also adds per-TD preferences for monitoring channel.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/altosui/AltosStatusTable.java')
| -rw-r--r-- | ao-tools/altosui/AltosStatusTable.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ao-tools/altosui/AltosStatusTable.java b/ao-tools/altosui/AltosStatusTable.java index 3965a57d..0d3a5d14 100644 --- a/ao-tools/altosui/AltosStatusTable.java +++ b/ao-tools/altosui/AltosStatusTable.java @@ -34,14 +34,11 @@ import altosui.AltosFlightInfoTableModel; public class AltosStatusTable extends JTable { private AltosFlightStatusTableModel flightStatusModel; - JFrame frame; - private Font statusFont = new Font("SansSerif", Font.BOLD, 24); - public AltosStatusTable(JFrame in_frame) { + public AltosStatusTable() { super((TableModel) new AltosFlightStatusTableModel()); flightStatusModel = (AltosFlightStatusTableModel) getModel(); - frame = in_frame; setFont(statusFont); |
