diff options
author | Keith Packard <keithp@keithp.com> | 2013-12-28 10:16:24 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-12-28 10:16:24 -0800 |
commit | aa01f06acfbf029958a55f68175b6868817b333f (patch) | |
tree | 9fb8f7ca4f6d1f39adefe883f5eada6ee0c29a59 | |
parent | bbc4940730e6b431f1b9ccd9bbaf9faa0ffb2b1f (diff) |
altosui: Adjust info table column width
Make sure the info table can show a full longitude value
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/AltosInfoTable.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/altosui/AltosInfoTable.java b/altosui/AltosInfoTable.java index 7ba62d01..158b61f0 100644 --- a/altosui/AltosInfoTable.java +++ b/altosui/AltosInfoTable.java @@ -46,9 +46,9 @@ public class AltosInfoTable extends JTable { TableColumn column = getColumnModel().getColumn(i); if ((i & 1) == 0) - column.setPreferredWidth(text_width(" Satellites Visible ")); + column.setPreferredWidth(text_width(" Satellites Visible")); else - column.setPreferredWidth(text_width(" 179°59.99999' ")); + column.setPreferredWidth(text_width("W 179°59.99999' ")); } } |