diff options
| author | Keith Packard <keithp@keithp.com> | 2011-08-02 17:40:02 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2011-08-02 17:40:02 -0700 | 
| commit | 95201e7fe4a6a7ec42321e8dbad3aea3bbf4c840 (patch) | |
| tree | bc17d940e998a35dfb815d17428e266b590c082d | |
| parent | 82e04a0e3a3296288a524ec582785a36fd644331 (diff) | |
altosui: Standard text field in flight UI needs more width (now 20)
Latitude and longitude take more than 16 characters.
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | altosui/Altos.java | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/Altos.java b/altosui/Altos.java index 8d5916ad..1acce949 100644 --- a/altosui/Altos.java +++ b/altosui/Altos.java @@ -98,7 +98,7 @@ public class Altos {  	static final Font value_font = new Font("Monospaced", Font.PLAIN, 22);  	static final Font status_font = new Font("SansSerif", Font.BOLD, 24); -	static final int text_width = 16; +	static final int text_width = 20;  	static void initialize_map()  	{  | 
