Changeset 23560 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-10-11T21:59:36+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/alignways
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/alignways/build.xml
r22050 r23560 36 36 with 37 37 --> 38 <property name="plugin.main.version" value="3 208" />38 <property name="plugin.main.version" value="3600" /> 39 39 40 40 … … 228 228 229 229 <!-- 230 ** commits the plugin.jar 230 ** commits the plugin.jar 231 231 --> 232 232 <target name="commit-dist"> -
applications/editors/josm/plugins/alignways/src/org/openstreetmap/josm/plugins/alignways/AlignWaysAlgnSegment.java
r23189 r23560 22 22 * point - keeps its potential pivot point list up to date - rotate 23 23 * itself - paint itself and its selected pivot point 24 * 24 * 25 25 */ 26 26 public class AlignWaysAlgnSegment extends AlignWaysSegment { … … 88 88 * Returns the EastNorth of the specified pivot point pp. It always returns 89 89 * up-to-date data from dataset. Assumes segment is not null. 90 * 90 * 91 91 * @param pp 92 92 * The pivot location … … 135 135 private PivotLocations findNearbyPivot(Point clickedPoint) { 136 136 PivotLocations nearest = PivotLocations.NONE; 137 int snapDistance = NavigatableComponent. snapDistance;137 int snapDistance = NavigatableComponent.PROP_SNAP_DISTANCE.get(); 138 138 139 139 // If no alignee selected yet, there's no point to carry on … … 155 155 /* 156 156 * (non-Javadoc) 157 * 157 * 158 158 * @see 159 159 * org.openstreetmap.josm.plugins.alignways.AlignWaysRefSegment#paint(java
Note:
See TracChangeset
for help on using the changeset viewer.