Changeset 26457 in osm for applications/editors/josm/plugins/FastDraw/src
- Timestamp:
- 2011-08-05T10:16:05+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r26455 r26457 247 247 Point lp=line.getLastPoint(); 248 248 Point mp=Main.map.mapView.getMousePosition(); 249 g.drawLine(lp.x,lp.y,mp.x,mp.y); 249 if (lp!=null && mp!=null) g.drawLine(lp.x,lp.y,mp.x,mp.y); 250 250 } 251 251 }
Note:
See TracChangeset
for help on using the changeset viewer.