diff options
author | Keith Packard <keithp@keithp.com> | 2011-01-16 14:40:31 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-01-16 14:40:31 -0800 |
commit | 3566dee1cf83870396a0bb164f5549dd3faf58f5 (patch) | |
tree | c893591e942fda6b4f6d7b4dc8689da04d7244b8 | |
parent | ab31b1c737d8fd32af482e5b06699f1b832a25a1 (diff) |
altosui: Remove spurious colons from eeprom selection headers
This colons make the presentation a bit confusing.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/AltosEepromSelect.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/altosui/AltosEepromSelect.java b/altosui/AltosEepromSelect.java index f0066aac..a3069f06 100644 --- a/altosui/AltosEepromSelect.java +++ b/altosui/AltosEepromSelect.java @@ -119,7 +119,7 @@ public class AltosEepromSelect extends JDialog implements ActionListener { c.weightx = 0.5; c.anchor = GridBagConstraints.CENTER; c.insets = i; - JLabel flightHeaderLabel = new JLabel("Flight:"); + JLabel flightHeaderLabel = new JLabel("Flight"); flightPane.add(flightHeaderLabel, c); /* Download Header */ @@ -129,7 +129,7 @@ public class AltosEepromSelect extends JDialog implements ActionListener { c.weightx = 0.5; c.anchor = GridBagConstraints.CENTER; c.insets = i; - JLabel downloadHeaderLabel = new JLabel("Download:"); + JLabel downloadHeaderLabel = new JLabel("Download"); flightPane.add(downloadHeaderLabel, c); /* Delete Header */ @@ -139,7 +139,7 @@ public class AltosEepromSelect extends JDialog implements ActionListener { c.weightx = 0.5; c.anchor = GridBagConstraints.CENTER; c.insets = i; - JLabel deleteHeaderLabel = new JLabel("Delete:"); + JLabel deleteHeaderLabel = new JLabel("Delete"); flightPane.add(deleteHeaderLabel, c); /* Add the flights to the GridBag */ |