Changeset 27803 in osm for applications


Ignore:
Timestamp:
2012-02-16T20:34:40+01:00 (13 years ago)
Author:
stoecker
Message:

fix shortcut conflicts

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

Legend:

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

    r27395 r27803  
    3232    <property name="commit.message" value="adapt to core changes (backwards compatible)"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    34     <property name="plugin.main.version" value="4734"/>
     34    <property name="plugin.main.version" value="4928"/>
    3535    <!--
    3636      ************************************************
  • applications/editors/josm/plugins/undelete/src/org/openstreetmap/josm/plugins/undelete/Undelete.java

    r27395 r27803  
    6868        public UndeleteAction() {
    6969        super(tr("Undelete object..."), "undelete", tr("Undelete object by id"), Shortcut.registerShortcut("tools:undelete", tr("File: {0}", tr("Undelete object...")),
    70         KeyEvent.VK_U, Shortcut.GROUP_EDIT, KeyEvent.SHIFT_DOWN_MASK|KeyEvent.ALT_DOWN_MASK), true);
     70        KeyEvent.VK_U, Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT2), true);
    7171      }
    7272
  • applications/editors/josm/plugins/waydownloader/build.xml

    r27019 r27803  
    2626    -->
    2727    <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
    28     <property name="plugin.main.version" value="4549"/>
     28    <property name="plugin.main.version" value="4928"/>
    2929    <!--
    3030      ************************************************
  • applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java

    r26509 r27803  
    5757                    "way-download",
    5858                    tr("Download map data on the end of selected way"),
    59                     Shortcut.registerShortcut("waydownloader:waydownload", tr("Way Download"), KeyEvent.VK_W, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT),
     59                    Shortcut.registerShortcut("waydownloader:waydownload", tr("Way Download"), KeyEvent.VK_W, Shortcut.GROUP_MENU+Shortcut.GROUPS_ALT1),
    6060                    true);
    6161        }
  • applications/editors/josm/plugins/wayselector/build.xml

    r27019 r27803  
    3232    <property name="commit.message" value="recompile due to core change"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    34     <property name="plugin.main.version" value="4549"/>
     34    <property name="plugin.main.version" value="4928"/>
    3535    <!--
    3636      ************************************************
  • applications/editors/josm/plugins/wayselector/src/org/openstreetmap/josm/plugins/wayselector/WaySelectorPlugin.java

    r23189 r27803  
    4545                  "way-select",
    4646                  tr("Select non-branching sequences of ways"),
    47                   Shortcut.registerShortcut("wayselector:wayselect", tr("Way Select"), KeyEvent.VK_W, Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT),
     47                  Shortcut.registerShortcut("wayselector:wayselect", tr("Way Select"), KeyEvent.VK_W, Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT1),
    4848                  true);
    4949        }
Note: See TracChangeset for help on using the changeset viewer.