Changeset 27841 in osm for applications


Ignore:
Timestamp:
2012-02-17T19:48:08+01:00 (13 years ago)
Author:
akks
Message:

shortcut refining (FastDraw->shift-f ImportVec->IntersectedWaysRecursively->SimplifyArea->ctrl-shift-Y)

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

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java

    r27826 r27841  
    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_DIRECT3+Shortcut.GROUPS_ALT1)
     95                Shortcut.registerShortcut("mapmode:fastdraw", tr("Mode: {0}", tr("Fast drawing mode")), KeyEvent.VK_F, Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT1)
    9696                ,mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    9797        line=new DrawnPolyLine();
  • applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportVectorAction.java

    r27826 r27841  
    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_DIRECT+Shortcut.GROUPS_ALT1), false);
     47                Shortcut.registerShortcut("system:import", tr("File: {0}", tr("Import...")), KeyEvent.VK_I, Shortcut.GROUP_MENU+Shortcut.GROUPS_ALT2), false);
    4848        // Avoid to override "open" toolbar function
    4949        putValue("toolbar", "importvec");
  • applications/editors/josm/plugins/simplifyarea/src/sk/zdila/josm/plugin/simplify/SimplifyAreaAction.java

    r27816 r27841  
    4747    public SimplifyAreaAction() {
    4848        super(tr("Simplify Area"), "simplify", tr("Delete unnecessary nodes from an area."),
    49                 Shortcut.registerShortcut("tools:simplifyArea", tr("Tool: {0}", tr("Simplify Area")), KeyEvent.VK_F, Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT1), true);
     49                Shortcut.registerShortcut("tools:simplifyArea", tr("Tool: {0}", tr("Simplify Area")), KeyEvent.VK_Y, Shortcut.GROUP_MENU+Shortcut.GROUPS_ALT1), true);
    5050    }
    5151
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/selection/IntersectedWaysRecursiveAction.java

    r27761 r27841  
    2525        super(tr("All intersecting ways"), "intwayall", tr("Select all intersecting ways"),
    2626                Shortcut.registerShortcut("tools:intwayall", tr("Tool: {0}","All intersecting ways"),
    27                 KeyEvent.VK_I, Shortcut.GROUPS_ALT2+Shortcut.GROUP_MENU), true);
     27                KeyEvent.VK_MULTIPLY, Shortcut.GROUP_MENU), true);
    2828        putValue("help", ht("/Action/SelectAllIntersectingWays"));
    2929
Note: See TracChangeset for help on using the changeset viewer.