Changeset 6544 in josm for trunk


Ignore:
Timestamp:
2013-12-27T13:25:08+01:00 (11 years ago)
Author:
simon04
Message:

fix #9473 - Added wayselector plugin to josm core. This plugin was initially written by Marko Mäkelä (Skela).

Location:
trunk
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainMenu.java

    r6501 r6544  
    7878import org.openstreetmap.josm.actions.SaveAsAction;
    7979import org.openstreetmap.josm.actions.SelectAllAction;
     80import org.openstreetmap.josm.actions.SelectNonBranchingWaySequencesAction;
    8081import org.openstreetmap.josm.actions.SessionLoadAction;
    8182import org.openstreetmap.josm.actions.SessionSaveAsAction;
     
    260261    /** Selection -> Unselect All */
    261262    public final UnselectAllAction unselectAll = new UnselectAllAction();
     263    /** Selection -> Non-branching way sequences */
     264    public final SelectNonBranchingWaySequencesAction nonBranchingWaySequences = new SelectNonBranchingWaySequencesAction();
    262265
    263266    /* Audio menu */
     
    704707        add(selectionMenu, selectAll);
    705708        add(selectionMenu, unselectAll);
     709        add(selectionMenu, nonBranchingWaySequences);
    706710
    707711        add(toolsMenu, splitWay);
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r6524 r6544  
    116116            new DeprecatedPlugin("epsg31287", tr("replaced by new {0} plugin", "proj4j")),
    117117            new DeprecatedPlugin("licensechange", tr("no longer required")),
    118             new DeprecatedPlugin("restart", IN_CORE)
     118            new DeprecatedPlugin("restart", IN_CORE),
     119            new DeprecatedPlugin("wayselector", IN_CORE),
    119120        });
    120121    }
Note: See TracChangeset for help on using the changeset viewer.