Changeset 1084 in josm for trunk/src/org/openstreetmap/josm/actions/JoinNodeWayAction.java
- Timestamp:
- 2008-11-18T19:53:53+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/JoinNodeWayAction.java
r1054 r1084 23 23 import org.openstreetmap.josm.data.osm.Way; 24 24 import org.openstreetmap.josm.data.osm.WaySegment; 25 import org.openstreetmap.josm.tools.Short Cut;25 import org.openstreetmap.josm.tools.Shortcut; 26 26 27 27 public class JoinNodeWayAction extends JosmAction { 28 28 public JoinNodeWayAction() { 29 29 super(tr("Join node to way"), "joinnodeway", tr("Join a node into the nearest way segments"), 30 Short Cut.registerShortCut("tools:joinnodeway", tr("Tool: {0}", tr("Join node to way")), KeyEvent.VK_J, ShortCut.GROUP_EDIT), true);30 Shortcut.registerShortcut("tools:joinnodeway", tr("Tool: {0}", tr("Join node to way")), KeyEvent.VK_J, Shortcut.GROUP_EDIT), true); 31 31 } 32 32
Note:
See TracChangeset
for help on using the changeset viewer.