Ignore:
Timestamp:
2009-07-03T23:35:00+02:00 (16 years ago)
Author:
stoecker
Message:

fixes for JOSM 1725 - utilsplugin JumpToAction still missing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbLayer.java

    r16163 r16294  
    125125            }
    126126
    127             Point p = mv.getPoint(node.getEastNorth());
     127            Point p = mv.getPoint(node);
    128128
    129129            ImageIcon icon = OsbPlugin.loadIcon("icon_error16.png");
     
    200200            if (n.deleted || n.incomplete)
    201201                continue;
    202             Point sp = Main.map.mapView.getPoint(n.getEastNorth());
     202            Point sp = Main.map.mapView.getPoint(n);
    203203            double dist = p.distanceSq(sp);
    204204            if (minDistanceSq > dist && p.distance(sp) < snapDistance) {
Note: See TracChangeset for help on using the changeset viewer.