Changeset 27765 in osm


Ignore:
Timestamp:
2012-02-15T20:55:40+01:00 (12 years ago)
Author:
stoecker
Message:

fix some shortcut conflicts

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

Legend:

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

    r27019 r27765  
    2727<project name="lakewalker" default="dist" basedir=".">
    2828    <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
    29     <property name="plugin.main.version" value="4549"/>
     29    <property name="plugin.main.version" value="4928"/>
    3030    <property name="josm" location="../../core/dist/josm-custom.jar"/>
    3131    <property name="plugin.dist.dir" value="../../dist"/>
  • applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerAction.java

    r23190 r27765  
    5252        super(name, "lakewalker-sml", tr("Lake Walker."),
    5353        Shortcut.registerShortcut("tools:lakewalker", tr("Tool: {0}", tr("Lake Walker")),
    54         KeyEvent.VK_L, Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), true);
     54        KeyEvent.VK_L, Shortcut.GROUP_DIRECT2+Shortcut.GROUPS_ALT2), true);
    5555        this.name = name;
    5656        setEnabled(true);
  • applications/editors/josm/plugins/reverter/src/reverter/ReverterPlugin.java

    r27604 r27765  
    1919    public ReverterPlugin(PluginInformation info) {
    2020        super(info);
    21         JMenu historyMenu = Main.main.menu.addMenu(marktr("History"), KeyEvent.VK_Y,
     21        JMenu historyMenu = Main.main.menu.addMenu(marktr("History"), KeyEvent.VK_L,
    2222                Main.main.menu.defaultMenuPos,ht("/Plugin/Reverter"));
    2323        //MainMenu.add(historyMenu, new ObjectsHistoryAction());
Note: See TracChangeset for help on using the changeset viewer.