Changeset 25709 in osm for applications/editors/josm/plugins/relcontext/src/relcontext/actions
- Timestamp:
- 2011-03-25T13:58:59+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/relcontext/src/relcontext/actions
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/relcontext/src/relcontext/actions/CreateMultipolygonAction.java
r25705 r25709 69 69 for( Way w : poly.ways ) 70 70 rel.addMember(new RelationMember("inner", w)); 71 if( isBoundary )72 addBoundaryMembers(rel);73 71 List<Command> list = removeTagsFromInnerWays(rel); 74 if( isBoundary ) 72 if( isBoundary ) { 75 73 if( !askForAdminLevelAndName(rel) ) 76 74 return; 77 if( isBoundary && getPref("boundaryways") ) 78 list.addAll(fixWayTagsForBoundary(rel)); 75 addBoundaryMembers(rel); 76 if( getPref("boundaryways") ) 77 list.addAll(fixWayTagsForBoundary(rel)); 78 } 79 79 list.add(new AddCommand(rel)); 80 80 Main.main.undoRedo.add(new SequenceCommand(tr("Create multipolygon"), list));
Note:
See TracChangeset
for help on using the changeset viewer.