Ignore:
Timestamp:
2011-07-25T11:16:32+02:00 (13 years ago)
Author:
akks
Message:

'Utilsplugin2: Symmetry tool Alt-Shift-S'

Location:
applications/editors/josm/plugins/utilsplugin2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/build.xml

    r26393 r26395  
    3030<project name="utilsplugin2" default="dist" basedir=".">
    3131    <!-- 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"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    3434    <property name="plugin.main.version" value="4201"/>
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/SymmetryAction.java

    r26393 r26395  
    3636        super(tr("Symmetry"), "symmetry", tr("Mirror selected nodes and ways."),
    3737                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);
    3939        putValue("help", ht("/Action/Symmtry"));
    4040    }
Note: See TracChangeset for help on using the changeset viewer.