- Timestamp:
- 2019-05-30T14:20:06+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/CreateMultipolygonAction.java
r15137 r15143 161 161 : null; 162 162 163 if (update && multipolygonRelation == null) 164 return; 163 165 // download incomplete relation or incomplete members if necessary 164 166 OsmDataLayer editLayer = getLayerManager().getEditLayer(); … … 188 190 for (final Way w : selectedWays) { 189 191 for (OsmPrimitive r : w.getReferrers()) { 190 if (r != candidate && r instanceof Relation && r.hasTag("type", "multipolygon")) {192 if (r != candidate && !r.isDisabled() && r instanceof Relation && r.hasTag("type", "multipolygon")) { 191 193 if (candidate != null) 192 194 return null; // found another multipolygon relation
Note:
See TracChangeset
for help on using the changeset viewer.