Changeset 4086 in josm


Ignore:
Timestamp:
2011-05-15T22:52:17+02:00 (13 years ago)
Author:
bastiK
Message:

new follow line action (author: Germán Márquez Mejía) fixes #4190

Location:
trunk
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java

    r3919 r4086  
    752752    }
    753753
     754    public Node getCurrentBaseNode() {
     755        return currentBaseNode;
     756    }
     757
    754758    private static void pruneSuccsAndReverse(List<Integer> is) {
    755759        //if (is.size() < 2) return;
  • trunk/src/org/openstreetmap/josm/gui/MainMenu.java

    r3969 r4086  
    3333import org.openstreetmap.josm.actions.DuplicateAction;
    3434import org.openstreetmap.josm.actions.ExitAction;
     35import org.openstreetmap.josm.actions.FollowLineAction;
    3536import org.openstreetmap.josm.actions.FullscreenToggleAction;
    3637import org.openstreetmap.josm.actions.GpxExportAction;
     
    161162    public final JosmAction joinAreas = new JoinAreasAction();
    162163    public final JosmAction createMultipolygon = new CreateMultipolygonAction();
     164    public final JosmAction followLine = new FollowLineAction();
    163165
    164166    /* Audio menu */
     
    330332        add(toolsMenu, mirror);
    331333        toolsMenu.addSeparator();
     334        add(toolsMenu, followLine);
    332335        add(toolsMenu, addnode);
    333336        add(toolsMenu, movenode);
Note: See TracChangeset for help on using the changeset viewer.