Changeset 35624 in osm for applications/editors/josm/plugins
- Timestamp:
- 2020-10-26T15:47:20+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/curves/CircleArcMaker.java
r35608 r35624 166 166 for (int i = pos1 + 1; i < pos3; i++) { 167 167 Node n = nodes.get(i); 168 if (n.isTagged() || n.isReferredByWays(2) || n.referrers(Relation.class).count() > 0) { 168 if (n.isTagged() || (!n.isNew() && n.isReferredByWays(2)) || n.referrers(Relation.class).count() > 0) { 169 169 fixNodes.add(n); 170 170 }
Note:
See TracChangeset
for help on using the changeset viewer.