Changeset 26395 in osm for applications
- Timestamp:
- 2011-07-25T11:16:32+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r26393 r26395 30 30 <project name="utilsplugin2" default="dist" basedir="."> 31 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value="Utilsplugin2: Symmetry tool "/>32 <property name="commit.message" value="Utilsplugin2: Symmetry tool Alt-Shift-S"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 34 <property name="plugin.main.version" value="4201"/> -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/SymmetryAction.java
r26393 r26395 36 36 super(tr("Symmetry"), "symmetry", tr("Mirror selected nodes and ways."), 37 37 Shortcut.registerShortcut("tools:symmetry", tr("Tool: {0}", tr("Symmetry")), 38 KeyEvent.VK_S, Shortcut.GROUP_EDIT, KeyEvent.ALT_DOWN_MASK), true);38 KeyEvent.VK_S, Shortcut.GROUP_EDIT, KeyEvent.SHIFT_DOWN_MASK|KeyEvent.ALT_DOWN_MASK ), true); 39 39 putValue("help", ht("/Action/Symmtry")); 40 40 }
Note:
See TracChangeset
for help on using the changeset viewer.