Changeset 4805 in josm
- Timestamp:
- 2012-01-16T21:44:24+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java
r4803 r4805 720 720 mouseOnExistingWays = new HashSet<Way>(); 721 721 722 showSta usInfo(-1, -1, -1);722 showStatusInfo(-1, -1, -1); 723 723 724 724 if (!ctrl && mousePos != null) { … … 765 765 LatLon mouseLatLon = mv.getProjection().eastNorth2latlon(currentMouseEastNorth); 766 766 distance = currentBaseNode.getCoor().greatCircleDistance(mouseLatLon); 767 showSta usInfo(angle, hdg, distance);767 showStatusInfo(angle, hdg, distance); 768 768 } // elsewhere status ar was filled by snapHelper 769 769 … … 772 772 } 773 773 774 private void showSta usInfo(double angle, double hdg, double distance) {774 private void showStatusInfo(double angle, double hdg, double distance) { 775 775 Main.map.statusLine.setAngle(angle); 776 776 Main.map.statusLine.setHeading(hdg); … … 1338 1338 } 1339 1339 1340 showSta usInfo(angle, hdg, distance);1340 showStatusInfo(angle, hdg, distance); 1341 1341 } else { 1342 1342 noSnapNow();
Note:
See TracChangeset
for help on using the changeset viewer.