Changeset 27841 in osm
- Timestamp:
- 2012-02-17T19:48:08+01:00 (13 years ago)
- 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 93 93 FastDrawingMode(MapFrame mapFrame) { 94 94 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) 96 96 ,mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); 97 97 line=new DrawnPolyLine(); -
applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportVectorAction.java
r27826 r27841 45 45 public ImportVectorAction() { 46 46 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); 48 48 // Avoid to override "open" toolbar function 49 49 putValue("toolbar", "importvec"); -
applications/editors/josm/plugins/simplifyarea/src/sk/zdila/josm/plugin/simplify/SimplifyAreaAction.java
r27816 r27841 47 47 public SimplifyAreaAction() { 48 48 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); 50 50 } 51 51 -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/selection/IntersectedWaysRecursiveAction.java
r27761 r27841 25 25 super(tr("All intersecting ways"), "intwayall", tr("Select all intersecting ways"), 26 26 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); 28 28 putValue("help", ht("/Action/SelectAllIntersectingWays")); 29 29
Note:
See TracChangeset
for help on using the changeset viewer.