Ignore:
Timestamp:
2011-08-08T19:41:52+02:00 (13 years ago)
Author:
akks
Message:

'FastDraw: saving bug - meging nodes'

Location:
applications/editors/josm/plugins/FastDraw
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/FastDraw/build.xml

    r26468 r26490  
    3030<project name="FastDraw" default="dist" basedir=".">
    3131    <!-- enter the SVN commit message -->
    32     <property name="commit.message" value="FastDraw: more settings, autosave"/>
     32    <property name="commit.message" value="FastDraw: saving bug - meging nodes"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    3434    <property name="plugin.main.version" value="4201"/>
  • applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java

    r26468 r26490  
    558558                nd = Main.map.mapView.getNearestNode(line.getPoint(p), OsmPrimitive.isUsablePredicate);
    559559            //}
     560            if (nd!=null) if (p.greatCircleDistance(nd.getCoor())>0.01) nd=null;
    560561            if (nd==null) {
    561562                if (i>0 && p.equals(first)) nd=firstNode; else {
Note: See TracChangeset for help on using the changeset viewer.