Changeset 27410 in osm for applications/editors/josm/plugins/utilsplugin2/src
- Timestamp:
- 2012-01-07T11:13:09+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/ExtractPointAction.java
r26320 r27410 34 34 tr("Extracts node from a way"), 35 35 Shortcut.registerShortcut("tools:extnode", tr("Tool: {0}","Extract node"), 36 KeyEvent.VK_J, Shortcut.GROUP_ MNEMONIC,KeyEvent.ALT_MASK ), true);36 KeyEvent.VK_J, Shortcut.GROUP_EDIT, KeyEvent.ALT_DOWN_MASK ), true); 37 37 putValue("help", ht("/Action/ExtractNode")); 38 38 } -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/selection/UnselectNodesAction.java
r25876 r27410 24 24 tr("Removes all nodes from selection"), 25 25 Shortcut.registerShortcut("tools:unsnodes", tr("Tool: {0}","Unselect nodes"), 26 KeyEvent.VK_U, Shortcut.GROUP_ MNEMONIC,KeyEvent.ALT_MASK), true);26 KeyEvent.VK_U, Shortcut.GROUP_EDIT, KeyEvent.ALT_DOWN_MASK), true); 27 27 putValue("help", ht("/Action/UnselectNodes")); 28 28 }
Note:
See TracChangeset
for help on using the changeset viewer.