diff options
author | Keith Packard <keithp@keithp.com> | 2013-12-19 00:12:21 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-12-19 00:12:21 -0800 |
commit | 9f95ffbad918a73cfd5460d6ce037d680465c35d (patch) | |
tree | 19bb7989374ce760452b839c298243c152a53125 | |
parent | a04c1dd5df76c9127615bc797a9d9f764eec1234 (diff) |
altosui: When device has no valid romconfig, set RF cal to 0
This is intended to signal to the user that no valid value was found
and that they'd best pick something sensible.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/AltosRomconfigUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosRomconfigUI.java b/altosui/AltosRomconfigUI.java index 6f9d9dc6..fa780125 100644 --- a/altosui/AltosRomconfigUI.java +++ b/altosui/AltosRomconfigUI.java @@ -91,7 +91,7 @@ public class AltosRomconfigUI c.anchor = GridBagConstraints.LINE_START; c.insets = ir; c.ipady = 5; - radio_calibration_value = new JTextField("1186611"); + radio_calibration_value = new JTextField("0"); pane.add(radio_calibration_value, c); /* Buttons */ |