Changeset 24792 in osm
- Timestamp:
- 2010-12-17T19:25:55+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r24791 r24792 31 31 32 32 <!-- enter the SVN commit message --> 33 <property name="commit.message" value=" change shortcut" />33 <property name="commit.message" value="fix" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 35 <property name="plugin.main.version" value="3650" /> -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/SelectWayNodesAction.java
r24791 r24792 47 47 public SelectWayNodesAction() { 48 48 super(tr("Select Way Nodes"),"selectwaynodes" , tr("Select all nodes of a selected way."), 49 Shortcut.registerShortcut("tools:selectwaynodes", tr("Tool: {0}", tr("Select Way Nodes")), KeyEvent.VK_N, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT), 49 Shortcut.registerShortcut("tools:selectwaynodes", tr("Tool: {0}", tr("Select Way Nodes")), KeyEvent.VK_N, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT), true); 50 50 putValue("help", ht("/Action/SelectWayNodes")); 51 51 }
Note:
See TracChangeset
for help on using the changeset viewer.