Changeset 5935 in josm for trunk


Ignore:
Timestamp:
2013-05-07T02:40:44+02:00 (11 years ago)
Author:
Don-vip
Message:

fix #8679, fix #8680 - correct handling of incomplete nodes without coordinates (for good)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/Node.java

    r5919 r5935  
    113113            this.lon = Double.NaN;
    114114            invalidateEastNorthCache();
    115         }
    116         setIncomplete(isVisible() && !isLatLonKnown());
     115            if (isVisible()) {
     116                setIncomplete(true);
     117            }
     118        }
    117119    }
    118120
Note: See TracChangeset for help on using the changeset viewer.