diff options
| author | Keith Packard <keithp@keithp.com> | 2010-11-20 14:31:23 -0800 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2010-11-20 14:31:23 -0800 |
| commit | 37f0201d724693528f37ac7d275f68f90cf94da0 (patch) | |
| tree | 0a5b64de3bef1cff49918f2a32c4b61f2d244b18 /ao-tools/altosui/AltosPad.java | |
| parent | b47517d4c2e49f6f7b9954d2c85f96397fe1103e (diff) | |
altosui: change descent tab formatting to four columns
This places labels to the left of each field. For igniter voltages,
it uses three columns for the labels.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/altosui/AltosPad.java')
| -rw-r--r-- | ao-tools/altosui/AltosPad.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/altosui/AltosPad.java b/ao-tools/altosui/AltosPad.java index 77289f89..480e4d79 100644 --- a/ao-tools/altosui/AltosPad.java +++ b/ao-tools/altosui/AltosPad.java @@ -65,7 +65,7 @@ public class AltosPad extends JComponent implements AltosFlightDisplay { layout.setConstraints(label, c); add(label); - value = new JTextField(15); + value = new JTextField(17); value.setFont(Altos.value_font); value.setHorizontalAlignment(SwingConstants.RIGHT); c.gridx = 2; c.gridy = y; @@ -101,7 +101,7 @@ public class AltosPad extends JComponent implements AltosFlightDisplay { layout.setConstraints(label, c); add(label); - value = new JTextField(30); + value = new JTextField(17); value.setFont(Altos.value_font); value.setHorizontalAlignment(SwingConstants.RIGHT); c.gridx = 2; c.gridy = y; |
