Changeset 27826 in osm


Ignore:
Timestamp:
2012-02-17T17:12:24+01:00 (12 years ago)
Author:
stoecker
Message:

fix shortcut conflicts

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

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java

    r27632 r27826  
    188188
    189189                if ( Main.main.menu != null ) {
    190                         commandMenu = Main.main.menu.addMenu(marktr("Commands") , KeyEvent.VK_C, Main.main.menu.defaultMenuPos, ht("/Plugin/CommandLine"));
     190                        commandMenu = Main.main.menu.addMenu(marktr("Commands") , KeyEvent.VK_M, Main.main.menu.defaultMenuPos, ht("/Plugin/CommandLine"));
    191191                        MainMenu.add(Main.main.menu.toolsMenu, new CommandLineAction(this));
    192192                }
  • applications/editors/josm/plugins/FastDraw/build.xml

    r27555 r27826  
    3232    <property name="commit.message" value="FastDraw: shortcut parsing"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    34     <property name="plugin.main.version" value="4667"/>
     34    <property name="plugin.main.version" value="4928"/>
    3535    <!--
    3636      ************************************************
  • applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java

    r27590 r27826  
    9393    FastDrawingMode(MapFrame mapFrame) {
    9494        super(tr("FastDrawing"), "turbopen.png", tr("Fast drawing mode"),
    95                 Shortcut.registerShortcut("mapmode:fastdraw", tr("Mode: {0}", tr("Fast drawing mode")), KeyEvent.VK_T, Shortcut.GROUP_EDIT)
     95                Shortcut.registerShortcut("mapmode:fastdraw", tr("Mode: {0}", tr("Fast drawing mode")), KeyEvent.VK_T, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1)
    9696                ,mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    9797        line=new DrawnPolyLine();
  • applications/editors/josm/plugins/importvec/build.xml

    r27336 r27826  
    3232    <property name="commit.message" value="Commit message"/>
    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/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportVectorAction.java

    r26684 r27826  
    4545    public ImportVectorAction() {
    4646        super(tr("Import..."), "open", tr("Import vector graphics."),
    47                 Shortcut.registerShortcut("system:import", tr("File: {0}", tr("Import...")), KeyEvent.VK_I, Shortcut.GROUP_MENU), false);
     47                Shortcut.registerShortcut("system:import", tr("File: {0}", tr("Import...")), KeyEvent.VK_I, Shortcut.GROUP_DIRECT+Shortcut.GROUPS_ALT1), false);
    4848        // Avoid to override "open" toolbar function
    4949        putValue("toolbar", "importvec");
  • applications/editors/josm/plugins/measurement/build.xml

    r26597 r27826  
    2727<project name="measurement" default="dist" basedir=".">
    2828    <property name="commit.message" value="recompile dure to core change"/>
    29     <property name="plugin.main.version" value="4395"/>
     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/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementDialog.java

    r27464 r27826  
    6767        super(tr("Measured values"), "measure", tr("Open the measurement window."),
    6868        Shortcut.registerShortcut("subwindow:measurement", tr("Toggle: {0}", tr("Measured values")),
    69         KeyEvent.VK_M, Shortcut.GROUP_LAYER), 150);
     69        KeyEvent.VK_U, Shortcut.GROUP_DIRECT3), 150);
    7070
    7171        resetButton = new SideButton(marktr("Reset"), "select", "Measurement",
  • applications/editors/josm/plugins/openvisible/build.xml

    r26605 r27826  
    3232    <property name="commit.message" value="Changed the constructor signature of the plugin main class; updated build.xml"/>
    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/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java

    r23191 r27826  
    4949        tr("Open only files that are visible in current view."),
    5050        Shortcut.registerShortcut("tools:openvisible", tr("Menu: {0}", tr("Open Visible...")),
    51         KeyEvent.VK_I, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT), true);
     51        KeyEvent.VK_I, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1), true);
    5252    }
    5353
  • applications/editors/josm/plugins/terracer/build.xml

    r26990 r27826  
    3232    <property name="ant.build.javac.target" value="1.5"/>
    3333    <property name="commit.message" value="applied #j5760 (patch by robome) - Order of housenumbers not correct"/>
    34     <property name="plugin.main.version" value="4549"/>
     34    <property name="plugin.main.version" value="4928"/>
    3535    <target name="init">
    3636        <mkdir dir="${plugin.build.dir}"/>
  • applications/editors/josm/plugins/terracer/src/terracer/TerracerAction.java

    r26029 r27826  
    7171                Shortcut.registerShortcut("tools:Terracer", tr("Tool: {0}",
    7272                        tr("Terrace a building")), KeyEvent.VK_T,
    73                         Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), true);
     73                        Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT1), true);
    7474    }
    7575
Note: See TracChangeset for help on using the changeset viewer.