Changeset 35896 in osm for applications/editors/josm/plugins
- Timestamp:
- 2022-01-14T09:05:11+01:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/alignways/src/org/openstreetmap/josm/plugins/alignways/AlignWaysCmdKeepLength.java
r35753 r35896 257 257 // Deny action if the nodes would end up outside world 258 258 for (EastNorth en : calculatedNodes.values()) { 259 if ( ProjectionRegistry.getProjection().eastNorth2latlon(en).isOutSideWorld())259 if (new Node(en).isOutSideWorld()) { 260 260 return AlignableStatus.ALGN_INV_OUTSIDE_WORLD; 261 } 261 262 } 262 263
Note:
See TracChangeset
for help on using the changeset viewer.