Changeset 18071 in osm for applications/editors/josm/plugins/openstreetbugs
- Timestamp:
- 2009-10-10T23:34:39+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/openstreetbugs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openstreetbugs/build.xml
r17872 r18071 26 26 <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs"/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/OpenStreetBugs"/> 28 <attribute name="Plugin-Mainversion" value="22 19"/>28 <attribute name="Plugin-Mainversion" value="2264"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbLayer.java
r17534 r18071 220 220 } 221 221 // prefer already selected node when multiple nodes on one point 222 else if(minDistanceSq == dist && n.isSelected() && !minPrimitive.isSelected())222 else if(minDistanceSq == dist && data.isSelected(n) && !data.isSelected(minPrimitive)) 223 223 { 224 224 minPrimitive = n;
Note:
See TracChangeset
for help on using the changeset viewer.