diff options
author | Keith Packard <keithp@keithp.com> | 2013-02-10 14:18:16 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-02-10 14:18:16 -0800 |
commit | 504cf412e8b60b5ff2dea93ed3336f0e058dea62 (patch) | |
tree | 7cc2320a6b066d188bbb185f9b8107175b526d27 /altosui/AltosSerial.java | |
parent | c2701ae646124f0668c5f2d1df3fc80f0075a9d7 (diff) |
altosui: Display callsign in connecting message window
When waiting for the remote end to respond, display the callsign along
with the frequency so that the user remembers that it's important to
set that too.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosSerial.java')
-rw-r--r-- | altosui/AltosSerial.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosSerial.java b/altosui/AltosSerial.java index 710aa145..e869f1ab 100644 --- a/altosui/AltosSerial.java +++ b/altosui/AltosSerial.java @@ -72,7 +72,7 @@ public class AltosSerial extends AltosLink { Object[] options = { "Cancel" }; JOptionPane pane = new JOptionPane(); - pane.setMessage(String.format("Connecting to %s, %7.3f MHz", device.toShortString(), frequency)); + pane.setMessage(String.format("Connecting to %s, %7.3f MHz as %s", device.toShortString(), frequency, callsign)); pane.setOptions(options); pane.setInitialValue(null); |