summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/AltosPad.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2010-11-10 22:11:21 -0800
committerKeith Packard <keithp@keithp.com>2010-11-10 22:11:21 -0800
commit5394548fa5c7bdbfcc01e8aa19e93e1cf6345e2a (patch)
tree5e50323e8eb6bbb21676da20bb3654c3f2910cf0 /ao-tools/altosui/AltosPad.java
parent891e629f6ba20654b614f3ca7211a0f1c92670cb (diff)
parent75f7698b99a661ed17a91748a99699fa6761772a (diff)
Merge remote branch 'aj/buttonbox' into buttonbox
Diffstat (limited to 'ao-tools/altosui/AltosPad.java')
-rw-r--r--ao-tools/altosui/AltosPad.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/ao-tools/altosui/AltosPad.java b/ao-tools/altosui/AltosPad.java
index 7b72be20..da047072 100644
--- a/ao-tools/altosui/AltosPad.java
+++ b/ao-tools/altosui/AltosPad.java
@@ -64,8 +64,8 @@ public class AltosPad extends JComponent implements AltosFlightDisplay {
layout.setConstraints(label, c);
add(label);
- value = new JTextField(10);
- value.setFont(label_font);
+ value = new JTextField(15);
+ value.setFont(value_font);
value.setHorizontalAlignment(SwingConstants.RIGHT);
c.gridx = 2; c.gridy = y;
c.anchor = GridBagConstraints.WEST;
@@ -95,8 +95,8 @@ public class AltosPad extends JComponent implements AltosFlightDisplay {
layout.setConstraints(label, c);
add(label);
- value = new JTextField(20);
- value.setFont(label_font);
+ value = new JTextField(30);
+ value.setFont(value_font);
value.setHorizontalAlignment(SwingConstants.RIGHT);
c.gridx = 2; c.gridy = y;
c.anchor = GridBagConstraints.EAST;