Changeset 12168 in josm


Ignore:
Timestamp:
2017-05-15T17:22:23+02:00 (7 years ago)
Author:
michael2402
Message:

Add a gap to the gpx line if the coordinates of a WayPoint are not known.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/gpx/GpxDrawHelper.java

    r12167 r12168  
    624624            for (WayPoint trkPnt : visibleSegments) {
    625625                if (!trkPnt.isLatLonKnown()) {
     626                    old = null;
    626627                    continue;
    627628                }
     
    652653            for (WayPoint trkPnt : visibleSegments) {
    653654                if (!trkPnt.isLatLonKnown()) {
     655                    old = null;
    654656                    continue;
    655657                }
Note: See TracChangeset for help on using the changeset viewer.