diff options
author | Keith Packard <keithp@keithp.com> | 2012-03-27 10:38:32 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-03-27 10:45:34 -0700 |
commit | d8ebb83e64d66fa159e75aa560d39d80bb6d9d04 (patch) | |
tree | b8388ffafeee81e3583e7e7160c0a7107b59f960 /altosui/AltosFrequency.java | |
parent | c1d12a117b36de7fe8dd992959b890bfd1163e81 (diff) |
altosui: Configure radio with new direct frequency setting
Instead of computing the radio setting in altosui, let the radio do it directly.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosFrequency.java')
-rw-r--r-- | altosui/AltosFrequency.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosFrequency.java b/altosui/AltosFrequency.java index 0617ce74..b748e460 100644 --- a/altosui/AltosFrequency.java +++ b/altosui/AltosFrequency.java @@ -35,7 +35,7 @@ public class AltosFrequency { String description; public String toString() { - return String.format("%7.3f MHz %-20.20s", + return String.format("%7.3f MHz %-20s", frequency, description); } |