Changes between Version 1 and Version 2 of Ticket #18248, comment 3
- Timestamp:
- 2019-10-23T19:44:00+02:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18248, comment 3
v1 v2 2 2 Index: src/org/openstreetmap/josm/actions/SimplifyWayAction.java 3 3 =================================================================== 4 --- src/org/openstreetmap/josm/actions/SimplifyWayAction.java (revision 154 66)4 --- src/org/openstreetmap/josm/actions/SimplifyWayAction.java (revision 15470) 5 5 +++ src/org/openstreetmap/josm/actions/SimplifyWayAction.java (working copy) 6 6 @@ -133,7 +133,8 @@ … … 9 9 JSpinner n = new JSpinner(new SpinnerNumberModel( 10 10 - s.getDouble(keyError, 3.0), 0.01, 100, 0.5)); 11 + s.getDouble(keyError, 3.0), 0.01, Integer.MAX_VALUE, 0.5));11 + s.getDouble(keyError, 3.0), 0.01, null, 0.5)); 12 12 + ((JSpinner.DefaultEditor) n.getEditor()).getTextField().setColumns(4); 13 13 q.add(n);


