Changeset 2079 in josm
- Timestamp:
- 2009-09-08T00:10:11+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/CombineWayAction.java
r2070 r2079 138 138 // 139 139 TagCollection wayTags = TagCollection.unionOfAllPrimitives(ways); 140 completeTagCollectionWithMissingTags(wayTags, ways); 140 141 141 142 142 // try to build a new way out of the combination of ways … … 163 163 modifiedTargetWay.setNodes(path); 164 164 165 TagCollection completeWayTags = new TagCollection(wayTags); 166 completeTagCollectionWithMissingTags(completeWayTags, ways); 167 165 168 CombineWaysConflictResolverDialog dialog = CombineWaysConflictResolverDialog.getInstance(); 166 dialog.getTagConflictResolverModel().populate( wayTags);169 dialog.getTagConflictResolverModel().populate(completeWayTags); 167 170 dialog.setTargetWay(targetWay); 168 171 dialog.getRelationMemberConflictResolverModel().populate(
Note:
See TracChangeset
for help on using the changeset viewer.