Changeset 11027 in josm for trunk/src/org
- Timestamp:
- 2016-09-19T15:54:17+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
r10953 r11027 63 63 import org.openstreetmap.josm.gui.MapViewState.MapViewPoint; 64 64 import org.openstreetmap.josm.gui.NavigatableComponent; 65 import org.openstreetmap.josm.gui.draw.MapPath2D;66 65 import org.openstreetmap.josm.gui.draw.MapViewPath; 67 66 import org.openstreetmap.josm.gui.mappaint.ElemStyles; … … 1423 1422 boolean showOneway, boolean onewayReversed) { 1424 1423 1425 Map Path2D path = new MapPath2D();1426 Map Path2D orientationArrows = showOrientation ? new MapPath2D() : null;1427 Map Path2D onewayArrows = showOneway ? new MapPath2D() : null;1428 Map Path2D onewayArrowsCasing = showOneway ? new MapPath2D() : null;1424 MapViewPath path = new MapViewPath(mapState); 1425 MapViewPath orientationArrows = showOrientation ? new MapViewPath(mapState) : null; 1426 MapViewPath onewayArrows = showOneway ? new MapViewPath(mapState) : null; 1427 MapViewPath onewayArrowsCasing = showOneway ? new MapViewPath(mapState) : null; 1429 1428 Rectangle bounds = g.getClipBounds(); 1430 1429 if (bounds != null) {
Note:
See TracChangeset
for help on using the changeset viewer.