Changeset 35580 in osm for applications/editors
- Timestamp:
- 2020-10-13T21:20:26+02:00 (4 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/HouseNumberTaggingTool/src/org/openstreetmap/josm/plugins/housenumbertool/LaunchAction.java
r35579 r35580 27 27 "home-icon32", 28 28 "Launches the HouseNumberTaggingTool dialog", 29 Shortcut.registerShortcut("edit:housenumbertaggingtool", tr("Data: {0}", "HouseNumberTaggingTool"), KeyEvent.VK_K, Shortcut.DIRECT), 29 Shortcut.registerShortcut("edit:housenumbertaggingtool", tr("Data: {0}", "HouseNumberTaggingTool"), 30 KeyEvent.VK_K, Shortcut.DIRECT), 30 31 true); 31 32 -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/UnGlueRelationAction.java
r35579 r35580 41 41 public UnGlueRelationAction() { 42 42 super(tr("UnGlue Relation"), "ungluerelations", tr("Duplicate nodes, ways and relations that are used by multiple relations."), 43 Shortcut.registerShortcut("tools:ungluerelation", tr("More tools: {0}", tr("UnGlue Relation")), KeyEvent.VK_G, Shortcut.ALT_SHIFT), 43 Shortcut.registerShortcut("tools:ungluerelation", tr("More tools: {0}", tr("UnGlue Relation")), 44 KeyEvent.VK_G, Shortcut.ALT_SHIFT), 44 45 true); 45 46 putValue("help", ht("/Action/UnGlueRelation")); -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/replacegeometry/ReplaceGeometryAction.java
r35579 r35580 28 28 public ReplaceGeometryAction() { 29 29 super(TITLE, "dumbutils/replacegeometry", tr("Replace geometry of selected object with a new one"), 30 Shortcut.registerShortcut("tools:replacegeometry", tr("More tools: {0}", tr("Replace Geometry")), KeyEvent.VK_G, Shortcut.CTRL_SHIFT), 30 Shortcut.registerShortcut("tools:replacegeometry", tr("More tools: {0}", tr("Replace Geometry")), 31 KeyEvent.VK_G, Shortcut.CTRL_SHIFT), 31 32 true); 32 33 }
Note:
See TracChangeset
for help on using the changeset viewer.