Ignore:
Timestamp:
2017-06-11T18:33:03+02:00 (7 years ago)
Author:
bastiK
Message:

fixed #14926 - repeat-image-phase: does not work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/draw/MapViewPath.java

    r12161 r12399  
    406406        ClampingPathVisitor(MapViewRectangle clip, double strokeOffset, double strokeLength, PathSegmentConsumer consumer) {
    407407            this.clip = clip;
    408             this.strokeProgress = Math.min(strokeLength - strokeOffset, 0);
     408            this.strokeProgress = Math.max(strokeLength - strokeOffset, 0);
    409409            this.strokeLength = strokeLength;
    410410            this.consumer = consumer;
Note: See TracChangeset for help on using the changeset viewer.