Changeset 15023 in josm for trunk/src/org
- Timestamp:
- 2019-04-27T08:33:14+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/MoveNodeAction.java
r14960 r15023 6 6 7 7 import java.awt.event.ActionEvent; 8 import java.awt.event.KeyEvent; 8 9 import java.util.Collection; 9 10 … … 16 17 import org.openstreetmap.josm.gui.MainApplication; 17 18 import org.openstreetmap.josm.gui.dialogs.LatLonDialog; 19 import org.openstreetmap.josm.tools.Shortcut; 18 20 19 21 /** … … 28 30 public MoveNodeAction() { 29 31 super(tr("Move Node..."), "movenode", tr("Edit latitude and longitude of a node."), 30 null, /* no shortcut */31 true);32 Shortcut.registerShortcut("movenode", tr("Edit: {0}", tr("Move Node...")), 33 KeyEvent.VK_M, Shortcut.NONE), true); 32 34 setHelpId(ht("/Action/MoveNode")); 33 35 }
Note:
See TracChangeset
for help on using the changeset viewer.