Changeset 27834 in osm for applications


Ignore:
Timestamp:
2012-02-17T18:34:30+01:00 (13 years ago)
Author:
stoecker
Message:

fix shortcut conflicts

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

Legend:

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

    r27356 r27834  
    2323<project name="AddrInterpolation" default="dist" basedir=".">
    2424    <property name="commit.message" value="Impoved Icon"/>
    25     <property name="plugin.main.version" value="4549"/>
     25    <property name="plugin.main.version" value="4928"/>
    2626    <!--
    2727      ************************************************
  • applications/editors/josm/plugins/addrinterpolation/src/org/openstreetmap/josm/plugins/AddrInterpolation/AddrInterpolationAction.java

    r27356 r27834  
    2525        super(tr("Address Interpolation"), "AddrInterpolation", tr("Handy Address Interpolation Functions"),
    2626                Shortcut.registerShortcut("tools:AddressInterpolation", tr("Tool: {0}", tr("Address Interpolation")),
    27                         KeyEvent.VK_A, Shortcut.GROUP_MENU,
    28                         InputEvent.ALT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK), false);
     27                        KeyEvent.VK_Z, Shortcut.GROUP_MENU+Shortcut.GROUPS_ALT2), false);
    2928        setEnabled(false);
    3029        DataSet.addSelectionListener(this);
  • applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/CzechAddressPlugin.java

    r27755 r27834  
    192192    public void pluginStatusChanged(int message) {
    193193        if (message == MESSAGE_DATABASE_LOADED) {
    194             czechMenu = Main.main.menu.addMenu(marktr("Adress"), KeyEvent.VK_A, 4, ht("/Plugin/CzechAddress"));
     194            czechMenu = Main.main.menu.addMenu(marktr("Adress"), KeyEvent.VK_Z, 4, ht("/Plugin/CzechAddress"));
    195195            menuItems.add(MainMenu.add(czechMenu, new PointManipulatorAction()));
    196196            menuItems.add(MainMenu.add(czechMenu, new GroupManipulatorAction()));
  • applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/actions/PointManipulatorAction.java

    r22915 r27834  
    3030                Shortcut.registerShortcut("tools:newaddress",
    3131                        "Adresy: Vytvořit/upravit adres",
    32                         KeyEvent.VK_A, Shortcut.GROUP_DIRECT, Shortcut.SHIFT_DEFAULT),
     32                        KeyEvent.VK_W, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1, Shortcut.SHIFT_DEFAULT),
    3333                true);
    3434    }
  • applications/editors/josm/plugins/globalsat/build.xml

    r26605 r27834  
    3232    <property name="commit.message" value="Changed constructor signature of plugin main class"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    34     <property name="plugin.main.version" value="4394"/>
     34    <property name="plugin.main.version" value="4928"/>
    3535    <property name="josm" location="../../core/dist/josm-custom.jar"/>
    3636    <property name="plugin.dist.dir" value="../../dist"/>
  • applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatPlugin.java

    r26509 r27834  
    108108            tr("Import Data from Globalsat Datalogger DG100 into GPX layer."),
    109109            Shortcut.registerShortcut("menu:globalsatimport", tr("Menu: {0}", tr("Globalsat Import")),
    110             KeyEvent.VK_I, Shortcut.GROUP_MENU), false);
     110            KeyEvent.VK_G, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1), false);
    111111        }
    112112        public void actionPerformed(ActionEvent e){
  • applications/editors/josm/plugins/terracer/src/terracer/ReverseTerraceAction.java

    r27549 r27834  
    4141            Shortcut.registerShortcut("tools:ReverseTerrace",
    4242                    tr("Tool: {0}", tr("Reverse a Terrace")),
    43                     KeyEvent.VK_R, Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT),
     43                    KeyEvent.VK_V, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1),
    4444                        true);
    4545    }
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/AddIntersectionsAction.java

    r27761 r27834  
    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_I,  Shortcut.GROUPS_ALT1+Shortcut.GROUP_EDIT), true);
     31                Shortcut.registerShortcut("tools:addintersect", tr("Tool: {0}", tr("Add nodes at intersections")), KeyEvent.VK_I,  Shortcut.GROUPS_ALT1+Shortcut.GROUP_DIRECT3), true);
    3232        putValue("help", ht("/Action/AddIntersections"));
    3333    }
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/selection/SelectModWaysAction.java

    r27761 r27834  
    2828                tr("Select last modified ways"),
    2929                Shortcut.registerShortcut("tools:selmodways", tr("Tool: {0}","Select last modified ways"),
    30                 KeyEvent.VK_Z,  Shortcut.GROUP_DIRECT2), true);
     30                KeyEvent.VK_Z,  Shortcut.GROUP_DIRECT2+Shortcut.GROUPS_ALT1), true);
    3131        putValue("help", ht("/Action/SelectLastModifiedWays"));
    3232    }
Note: See TracChangeset for help on using the changeset viewer.