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/livegps/src/livegps/LiveGpsLayer.java

    r16290 r16294  
    7474    {
    7575        if (lastPoint != null)
    76             Main.map.mapView.zoomTo(lastPoint.eastNorth);
     76            Main.map.mapView.zoomTo(lastPoint.getCoor());
    7777    }
    7878
     
    116116            if (lastPoint != null)
    117117            {
    118                 Point screen = mv.getPoint(lastPoint.eastNorth);
     118                Point screen = mv.getPoint(lastPoint.getCoor());
    119119                g.setColor(Main.pref.getColor(KEY_LIVEGPS_COLOR, Color.RED));
    120120                g.drawOval(screen.x-10, screen.y-10,20,20);
Note: See TracChangeset for help on using the changeset viewer.