diff options
author | Keith Packard <keithp@keithp.com> | 2014-09-11 14:23:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-09-11 14:26:34 -0700 |
commit | 6dafd7bf947d892e430cd565eb92a3366abb3604 (patch) | |
tree | 2819ce674e4cb727580fe2deb438e91034416396 /telegps | |
parent | 368c7d583380b4453f432d5a965a1e4c45a92f92 (diff) |
telegps: Was mis-configuring the 'Configure Device' dialog
Make sure we show 'rate_label' instead of showing 'radio_enable_label'
twice.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'telegps')
-rw-r--r-- | telegps/TeleGPSConfigUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telegps/TeleGPSConfigUI.java b/telegps/TeleGPSConfigUI.java index 7a59bf48..e2e3d782 100644 --- a/telegps/TeleGPSConfigUI.java +++ b/telegps/TeleGPSConfigUI.java @@ -344,7 +344,7 @@ public class TeleGPSConfigUI c.insets = il; c.ipady = 5; rate_label = new JLabel("Telemetry baud rate:"); - pane.add(radio_enable_label, c); + pane.add(rate_label, c); c = new GridBagConstraints(); c.gridx = 4; c.gridy = row; |