summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2014-06-05 16:50:29 -0700
committerKeith Packard <keithp@keithp.com>2014-06-05 16:50:29 -0700
commit1bcafc452f50e518c4d86cbd6b9057c4bf7e676f (patch)
tree4ea75286b32267408d97580bd81ad746db8e2bfe
parentf59d69064763cfad2b4b15fd9660fd5fa21dba5e (diff)
altosuilib: Let the user hand-edit the preload map radius
In case they want more than 5 Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altosuilib/AltosSiteMapPreload.java2
1 files changed, 1 insertions, 1 deletions
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<Integer>(radii);
radius.setSelectedItem(radii[4]);
- radius.setEditable(false);
+ radius.setEditable(true);
c.gridx = 5;
c.gridy = 4;
pane.add(radius, c);