Ignore:
Timestamp:
2011-03-25T13:58:59+01:00 (14 years ago)
Author:
zverik
Message:

role panel is now integrated into the top line (reltoolbox plugin)

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  
    6969            for( Way w : poly.ways )
    7070                rel.addMember(new RelationMember("inner", w));
    71         if( isBoundary )
    72             addBoundaryMembers(rel);
    7371        List<Command> list = removeTagsFromInnerWays(rel);
    74         if( isBoundary )
     72        if( isBoundary ) {
    7573            if( !askForAdminLevelAndName(rel) )
    7674                return;
    77         if( isBoundary && getPref("boundaryways") )
    78             list.addAll(fixWayTagsForBoundary(rel));
     75            addBoundaryMembers(rel);
     76            if( getPref("boundaryways") )
     77                list.addAll(fixWayTagsForBoundary(rel));
     78        }
    7979        list.add(new AddCommand(rel));
    8080        Main.main.undoRedo.add(new SequenceCommand(tr("Create multipolygon"), list));
Note: See TracChangeset for help on using the changeset viewer.