Changeset 26490 in osm for applications/editors
- Timestamp:
- 2011-08-08T19:41:52+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/FastDraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/build.xml
r26468 r26490 30 30 <project name="FastDraw" default="dist" basedir="."> 31 31 <!-- 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"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 34 <property name="plugin.main.version" value="4201"/> -
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r26468 r26490 558 558 nd = Main.map.mapView.getNearestNode(line.getPoint(p), OsmPrimitive.isUsablePredicate); 559 559 //} 560 if (nd!=null) if (p.greatCircleDistance(nd.getCoor())>0.01) nd=null; 560 561 if (nd==null) { 561 562 if (i>0 && p.equals(first)) nd=firstNode; else {
Note:
See TracChangeset
for help on using the changeset viewer.