Changeset 596 in josm for trunk/src/org
- Timestamp:
- 2008-04-07T02:26:32+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/MapPaintVisitor.java
r580 r596 136 136 public void visit(Way w) { 137 137 double circum = Main.map.mapView.getScale()*100*Main.proj.scaleFactor()*40041455; // circumference of the earth in meter 138 boolean showDirection = showDirectionArrow ;139 if (useRealWidth && showDirection && !w.selected) showDirection = false;138 boolean showDirection = showDirectionArrow && w.selected; 139 if (useRealWidth && showDirection) showDirection = false; 140 140 Color colour = untaggedColor; 141 141 int width = 2;
Note:
See TracChangeset
for help on using the changeset viewer.