Changeset 27817 in osm for applications


Ignore:
Timestamp:
2012-02-16T21:59:52+01:00 (13 years ago)
Author:
stoecker
Message:

fix shortcut conflict and deprecation

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

Legend:

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

    r27119 r27817  
    2727<project name="junctionchecking" 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.build.dir" value="build"/>
  • applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckDialog.java

    r27465 r27817  
    4848                super(tr("JunctionChecking"), "junctionchecker", tr("Open the junctionchecking window."),
    4949                                Shortcut.registerShortcut("subwindow:junctionchecker", tr("Toggle: {0}", tr("junctions")),
    50                                                 KeyEvent.VK_B, Shortcut.GROUP_LAYER, Shortcut.SHIFT_DEFAULT), 150);
     50                                                KeyEvent.VK_J, Shortcut.GROUP_LAYER+Shortcut.GROUPS_ALT1), 150);
    5151                plugin = junctionCheckerGuiPlugin;
    5252                //das Digraph Create Panel
  • applications/editors/josm/plugins/openstreetbugs/build.xml

    r27019 r27817  
    2727<project name="openstreetbugs" 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/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/gui/OsbDialog.java

    r26299 r27817  
    115115                tr("Opens the OpenStreetBugs window and activates the automatic download"), Shortcut.registerShortcut(
    116116                        "view:openstreetbugs", tr("Toggle: {0}", tr("Open OpenStreetBugs")), KeyEvent.VK_B,
    117                         Shortcut.GROUP_LAYER, Shortcut.SHIFT_DEFAULT), 150);
     117                        Shortcut.GROUP_LAYER+Shortcut.GROUPS_ALT1), 150);
    118118
    119119        osbPlugin = plugin;
Note: See TracChangeset for help on using the changeset viewer.