Ignore:
Timestamp:
2021-07-10T22:12:33+02:00 (3 years ago)
Author:
Don-vip
Message:

fix #20994 - OOBE when removing node of highlighted way (patch by Bjoeni)

File:
1 edited

Legend:

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

    r17896 r17986  
    12911291            MapViewPath highlightSegs = null;
    12921292            for (WaySegment ws : highlightWaySegments) {
    1293                 if (ws.getWay() != way || ws.getLowerIndex() < offset) {
     1293                if (ws.getWay() != way || ws.getLowerIndex() < offset || !ws.isUsable()) {
    12941294                    continue;
    12951295                }
Note: See TracChangeset for help on using the changeset viewer.