summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2014-09-11 14:23:29 -0700
committerBdale Garbee <bdale@gag.com>2014-09-13 11:26:06 -0600
commit793588e218102204e69755a16bc32ea5c67f29c7 (patch)
treed88d287215c5e8c9c8860999ad81f36f325f0bcc
parent19730b872c61f34724b0f187f71cccb6a65251dd (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>
-rw-r--r--telegps/TeleGPSConfigUI.java2
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;