Changeset 642 in josm
- Timestamp:
- 2008-05-19T02:12:13+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java
r627 r642 417 417 return; // Don't create zero length way segments. 418 418 } 419 420 Main.map.mapView.repaint(); 421 419 422 420 // find out the distance, in metres, between the base point and the mouse cursor 423 421 LatLon mouseLatLon = Main.proj.eastNorth2latlon(currentMouseEastNorth); … … 432 430 Main.map.statusLine.setDist(distance); 433 431 updateStatusLine(); 432 433 if (!drawHelperLine) return; 434 435 Main.map.mapView.repaint(); 434 436 } 435 437
Note:
See TracChangeset
for help on using the changeset viewer.