Changes between Initial Version and Version 1 of Ticket #18248, comment 3
- Timestamp:
- 2019-10-22T22:47:13+02:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18248, comment 3
initial v1 4 4 --- src/org/openstreetmap/josm/actions/SimplifyWayAction.java (revision 15466) 5 5 +++ src/org/openstreetmap/josm/actions/SimplifyWayAction.java (working copy) 6 @@ -133, 8 +133,9@@6 @@ -133,7 +133,8 @@ 7 7 JPanel q = new JPanel(new GridBagLayout()); 8 8 q.add(new JLabel(tr("Maximum error (meters): "))); … … 10 10 - s.getDouble(keyError, 3.0), 0.01, 100, 0.5)); 11 11 + s.getDouble(keyError, 3.0), 0.01, Integer.MAX_VALUE, 0.5)); 12 + ((JSpinner.DefaultEditor) n.getEditor()).getTextField().setColumns(4); 12 13 q.add(n); 13 + ((JSpinner.DefaultEditor) n.getEditor()).getTextField().setColumns(4);14 14 q.setBorder(BorderFactory.createEmptyBorder(14, 0, 10, 0)); 15 15 p.add(q, GBC.eol()); 16 JCheckBox c = new JCheckBox(tr("Do not ask again"));17 16 }}} 18 17 Let's just give the user the freedom he deserves ;)


