From: Keith Packard Date: Thu, 5 Jun 2014 23:50:29 +0000 (-0700) Subject: altosuilib: Let the user hand-edit the preload map radius X-Git-Tag: 1.3.2.2~20 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=1bcafc452f50e518c4d86cbd6b9057c4bf7e676f;hp=f59d69064763cfad2b4b15fd9660fd5fa21dba5e altosuilib: Let the user hand-edit the preload map radius In case they want more than 5 Signed-off-by: Keith Packard --- diff --git a/altosuilib/AltosSiteMapPreload.java b/altosuilib/AltosSiteMapPreload.java index 6b8066b3..ed7ecbd3 100644 --- a/altosuilib/AltosSiteMapPreload.java +++ b/altosuilib/AltosSiteMapPreload.java @@ -556,7 +556,7 @@ public class AltosSiteMapPreload extends AltosUIFrame implements ActionListener, radius = new JComboBox(radii); radius.setSelectedItem(radii[4]); - radius.setEditable(false); + radius.setEditable(true); c.gridx = 5; c.gridy = 4; pane.add(radius, c);