Changeset 29545 in osm for applications/editors/josm/plugins
- Timestamp:
- 2013-04-30T23:01:27+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementDialog.java
r29344 r29545 131 131 Node lastNode = null; 132 132 for (OsmPrimitive p : newSelection) { 133 // ignore incomplete nodes 134 if (p instanceof Node && !((Node)p).isIncomplete()) { 133 if (p instanceof Node && ((Node) p).getCoor() != null) { 135 134 Node n =(Node)p; 136 135 if (lastNode == null) {
Note:
See TracChangeset
for help on using the changeset viewer.