diff options
author | Keith Packard <keithp@keithp.com> | 2010-11-16 21:49:59 +0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-11-16 21:49:59 +0800 |
commit | fcca333cda64be35f0c9fb0109eef1be3709dddd (patch) | |
tree | d7c9909b44a2ad3d9e3e7a62a1103835cbc4a2c3 /ao-tools/altosui/AltosConfigUI.java | |
parent | 39e371561469d8e5059638ffa4e7075f391de268 (diff) |
altosui: Add callsign configuration in AltosUI configuration dialog
This callsign is used during packet communication.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/altosui/AltosConfigUI.java')
-rw-r--r-- | ao-tools/altosui/AltosConfigUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/altosui/AltosConfigUI.java b/ao-tools/altosui/AltosConfigUI.java index e04933eb..ca89f58d 100644 --- a/ao-tools/altosui/AltosConfigUI.java +++ b/ao-tools/altosui/AltosConfigUI.java @@ -288,7 +288,7 @@ public class AltosConfigUI c.anchor = GridBagConstraints.LINE_START; c.insets = ir; c.ipady = 5; - callsign_value = new JTextField("N0CALL"); + callsign_value = new JTextField(AltosPreferences.callsign()); callsign_value.getDocument().addDocumentListener(this); pane.add(callsign_value, c); |