Ignore:
Timestamp:
2014-05-26T00:43:47+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #9952 - set extrude.initial-move-threshold to 1px as default

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java

    r7009 r7180  
    114114     * The minimal shift of mouse (in pixels) befire something counts as move
    115115     */
    116     private int initialMoveThreshold = 10;
     116    private int initialMoveThreshold = 1;
    117117
    118118    /**
     
    214214        }
    215215        initialMoveDelay = Main.pref.getInteger("edit.initial-move-delay",200);
    216         initialMoveThreshold = Main.pref.getInteger("extrude.initial-move-threshold", 10);
     216        initialMoveThreshold = Main.pref.getInteger("extrude.initial-move-threshold", 1);
    217217        mainColor = Main.pref.getColor(marktr("Extrude: main line"), null);
    218218        if (mainColor == null) mainColor = PaintColors.SELECTED.get();
Note: See TracChangeset for help on using the changeset viewer.