altosuilib: Let the user hand-edit the preload map radius
authorKeith Packard <keithp@keithp.com>
Thu, 5 Jun 2014 23:50:29 +0000 (16:50 -0700)
committerKeith Packard <keithp@keithp.com>
Thu, 5 Jun 2014 23:50:29 +0000 (16:50 -0700)
In case they want more than 5

Signed-off-by: Keith Packard <keithp@keithp.com>
altosuilib/AltosSiteMapPreload.java

index 6b8066b36c350f47f427cfa682a116dcd445a193..ed7ecbd37c142b7ecd52c1b9035a2f9ecb79e5ec 100644 (file)
@@ -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);