Changeset 27859 in osm


Ignore:
Timestamp:
2012-02-18T16:07:52+01:00 (12 years ago)
Author:
akks
Message:

'Utilsplugin2: fixing shortcut conflicts, one better key'

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

Legend:

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

    r27852 r27859  
    3030<project name="utilsplugin2" default="dist" basedir=".">
    3131    <!-- enter the SVN commit message -->
    32     <property name="commit.message" value="Utilsplugin2: fixing shortcut deprecation"/>
     32    <property name="commit.message" value="Utilsplugin2: fixing shortcut conflicts, one better key"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    3434    <property name="plugin.main.version" value="4980"/>
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/AddIntersectionsAction.java

    r27852 r27859  
    2929    public AddIntersectionsAction() {
    3030        super(tr("Add nodes at intersections"), "addintersect", tr("Add missing nodes at intersections of selected ways."),
    31                 Shortcut.registerShortcut("tools:addintersect", tr("Tool: {0}", tr("Add nodes at intersections")), KeyEvent.VK_N, Shortcut.ALT_CTRL_SHIFT), true);
     31                Shortcut.registerShortcut("tools:addintersect", tr("Tool: {0}", tr("Add nodes at intersections")), KeyEvent.VK_I, Shortcut.SHIFT), true);
    3232        putValue("help", ht("/Action/AddIntersections"));
    3333    }
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/UtilsPlugin2.java

    r27618 r27859  
    5858        super(info);
    5959
    60         JMenu toolsMenu = Main.main.menu.addMenu(marktr("More tools"), KeyEvent.VK_R, 4, "help");
     60        JMenu toolsMenu = Main.main.menu.addMenu(marktr("More tools"), KeyEvent.VK_Q, 4, "help");
    6161        unglueRelation = MainMenu.add(toolsMenu, new UnGlueRelationAction());
    6262        addIntersections = MainMenu.add(toolsMenu, new AddIntersectionsAction());
Note: See TracChangeset for help on using the changeset viewer.