Changeset 17485 in josm for trunk/src


Ignore:
Timestamp:
2021-02-08T10:22:22+01:00 (3 years ago)
Author:
GerdP
Message:

see #20432: Additional panel context menu item: Download complete relation

  • unlile "download members" this will download the relation using the API call with /full This is typically much faster, while "download members" really downloads (only) the current members with possibly many multiget calls

Difference to "download members": The data for the relation is also updated, esp. also the member list

TODO: Create new icon for either of the actions.

Location:
trunk/src/org/openstreetmap/josm
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationPopupMenus.java

    r16189 r17485  
    99import org.openstreetmap.josm.actions.relation.DeleteRelationsAction;
    1010import org.openstreetmap.josm.actions.relation.DownloadMembersAction;
     11import org.openstreetmap.josm.actions.relation.DownloadRelationAction;
    1112import org.openstreetmap.josm.actions.relation.DownloadSelectedIncompleteMembersAction;
    1213import org.openstreetmap.josm.actions.relation.DuplicateRelationAction;
     
    5859        menu.addSeparator();
    5960
     61        menu.addAction(new DownloadRelationAction());
    6062        menu.addAction(new DownloadMembersAction());
    6163        menu.addAction(new DownloadSelectedIncompleteMembersAction());
Note: See TracChangeset for help on using the changeset viewer.