Changeset 29531 in osm for applications/editors/josm/plugins/FastDraw/src
- Timestamp:
- 2013-04-23T13:17:15+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r29457 r29531 238 238 g.setColor(lineColor); 239 239 Point lp=line.getLastPoint(); 240 Point mp= Main.map.mapView.getMousePosition();240 Point mp=mv.getMousePosition(); 241 241 if (lp!=null && mp!=null) g.drawLine(lp.x,lp.y,mp.x,mp.y); 242 242 }
Note:
See TracChangeset
for help on using the changeset viewer.