Changeset 6356 in josm


Ignore:
Timestamp:
2013-11-02T17:04:30+01:00 (10 years ago)
Author:
Don-vip
Message:

fix #9261 - do not consider objects tagged only with area as tagged

File:
1 edited

Legend:

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

    r6317 r6356  
    769769        if (keys != null) {
    770770            for (String key: keySet()) {
    771                 if (!isUninterestingKey(key)) {
     771                // 'area' is not really uninteresting (putting it in that list may have unpredictable side effects)
     772                // but it's clearly not enough to consider an object as tagged (see #9261)
     773                if (!isUninterestingKey(key) && !"area".equals(key)) {
    772774                    updateFlagsNoLock(FLAG_TAGGED, true);
    773775                    return;
Note: See TracChangeset for help on using the changeset viewer.