Changes between Version 1 and Version 2 of Ticket #18248, comment 3


Ignore:
Timestamp:
2019-10-23T19:44:00+02:00 (6 years ago)
Author:
Bjoeni

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18248, comment 3

    v1 v2  
    22Index: src/org/openstreetmap/josm/actions/SimplifyWayAction.java
    33===================================================================
    4 --- src/org/openstreetmap/josm/actions/SimplifyWayAction.java   (revision 15466)
     4--- src/org/openstreetmap/josm/actions/SimplifyWayAction.java   (revision 15470)
    55+++ src/org/openstreetmap/josm/actions/SimplifyWayAction.java   (working copy)
    66@@ -133,7 +133,8 @@
     
    99         JSpinner n = new JSpinner(new SpinnerNumberModel(
    1010-                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));
    1212+        ((JSpinner.DefaultEditor) n.getEditor()).getTextField().setColumns(4);
    1313         q.add(n);