Ignore:
Timestamp:
2017-07-03T00:44:07+02:00 (7 years ago)
Author:
bastiK
Message:

revert [12399], fixes #14980, reopens #14926

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java

    r12376 r12450  
    13011301
    13021302                    while (dist < segmentLength) {
    1303                         appenOnewayPath(onewayReversed, start, nx, ny, dist, 3d, onewayArrowsCasing);
    1304                         appenOnewayPath(onewayReversed, start, nx, ny, dist, 2d, onewayArrows);
     1303                        appendOnewayPath(onewayReversed, start, nx, ny, dist, 3d, onewayArrowsCasing);
     1304                        appendOnewayPath(onewayReversed, start, nx, ny, dist, 2d, onewayArrows);
    13051305                        dist += interval;
    13061306                    }
     
    13181318    }
    13191319
    1320     private static void appenOnewayPath(boolean onewayReversed, MapViewPoint p1, double nx, double ny, double dist,
     1320    private static void appendOnewayPath(boolean onewayReversed, MapViewPoint p1, double nx, double ny, double dist,
    13211321            double onewaySize, Path2D onewayPath) {
    13221322        // scale such that border is 1 px
Note: See TracChangeset for help on using the changeset viewer.