Ignore:
Timestamp:
2012-02-18T13:40:52+01:00 (14 years ago)
Author:
stoecker
Message:

fix shortcut deprecation

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

Legend:

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

    r27794 r27852  
    3232    <property name="commit.message" value="Reverter: moved menu to Alt-Y (conflicts), recompile"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    34     <property name="plugin.main.version" value="4928"/>
     34    <property name="plugin.main.version" value="4980"/>
    3535    <!--
    3636      ************************************************
  • applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryAction.java

    r27794 r27852  
    1616            Shortcut.registerShortcut("tool:history",
    1717                "Tool: Display objects history dialog",
    18                 KeyEvent.VK_H, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1),
     18                KeyEvent.VK_H, Shortcut.ALT_CTRL_SHIFT),
    1919                true);
    2020        setEnabled(false);
  • applications/editors/josm/plugins/reverter/src/reverter/RevertChangesetAction.java

    r27795 r27852  
    1919            Shortcut.registerShortcut("tool:revert",
    2020                tr("Tool: {0}", tr("Revert changeset")),
    21                 KeyEvent.VK_T, Shortcut.GROUP_DIRECT3),
     21                KeyEvent.VK_T, Shortcut.CTRL_SHIFT),
    2222                true);
    2323    }
Note: See TracChangeset for help on using the changeset viewer.