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


Ignore:
Timestamp:
2019-10-22T22:47:13+02:00 (6 years ago)
Author:
Bjoeni

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18248, comment 3

    initial v1  
    44--- src/org/openstreetmap/josm/actions/SimplifyWayAction.java   (revision 15466)
    55+++ src/org/openstreetmap/josm/actions/SimplifyWayAction.java   (working copy)
    6 @@ -133,8 +133,9 @@
     6@@ -133,7 +133,8 @@
    77         JPanel q = new JPanel(new GridBagLayout());
    88         q.add(new JLabel(tr("Maximum error (meters): ")));
     
    1010-                s.getDouble(keyError, 3.0), 0.01, 100, 0.5));
    1111+                s.getDouble(keyError, 3.0), 0.01, Integer.MAX_VALUE, 0.5));
     12+        ((JSpinner.DefaultEditor) n.getEditor()).getTextField().setColumns(4);
    1213         q.add(n);
    13 +        ((JSpinner.DefaultEditor) n.getEditor()).getTextField().setColumns(4);
    1414         q.setBorder(BorderFactory.createEmptyBorder(14, 0, 10, 0));
    1515         p.add(q, GBC.eol());
    16          JCheckBox c = new JCheckBox(tr("Do not ask again"));
    1716}}}
    1817Let's just give the user the freedom he deserves ;)