Ignore:
Timestamp:
2009-10-10T23:34:39+02:00 (15 years ago)
Author:
stoecker
Message:

some cleanups

Location:
applications/editors/josm/plugins/openstreetbugs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/openstreetbugs/build.xml

    r17872 r18071  
    2626                <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs"/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/OpenStreetBugs"/>
    28                 <attribute name="Plugin-Mainversion" value="2219"/>
     28                <attribute name="Plugin-Mainversion" value="2264"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbLayer.java

    r17534 r18071  
    220220            }
    221221            // 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))
    223223            {
    224224                minPrimitive = n;
Note: See TracChangeset for help on using the changeset viewer.