Changeset 27852 in osm for applications/editors/josm/plugins/trustosm
- Timestamp:
- 2012-02-18T13:40:52+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/trustosm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/trustosm/build.xml
r27819 r27852 32 32 <property name="commit.message" value="New plugin for digital signing osm data"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="49 61"/>34 <property name="plugin.main.version" value="4980"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/actions/ExportSigsAction.java
r27819 r27852 17 17 public ExportSigsAction() { 18 18 super(tr("Export sigs..."), "exportsigs", tr("Export all signatures to XML file."), 19 Shortcut.registerShortcut("file:exportsigs", tr("Export sigs to XML..."), KeyEvent.VK_X, Shortcut. GROUPS_ALT2+Shortcut.GROUP_MENU));19 Shortcut.registerShortcut("file:exportsigs", tr("Export sigs to XML..."), KeyEvent.VK_X, Shortcut.ALT_CTRL)); 20 20 } 21 21 -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/actions/GetMissingDataAction.java
r25785 r27852 23 23 public GetMissingDataAction() { 24 24 super(tr("Download OSM"),"getmissing",tr("Get all referenced but not actually present OSM objects from OSM server."), 25 Shortcut.registerShortcut("gpg:download", tr("Download referenced osm objects..."), KeyEvent.VK_T, Shortcut. GROUP_MENU),true);25 Shortcut.registerShortcut("gpg:download", tr("Download referenced osm objects..."), KeyEvent.VK_T, Shortcut.CTRL),true); 26 26 } 27 27 -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/dialogs/TrustDialog.java
r27819 r27852 187 187 super(tr("Object signatures"), "trustosm", tr("Open object signing window."), 188 188 Shortcut.registerShortcut("subwindow:trustosm", tr("Toggle: {0}", tr("Object signatures")), 189 KeyEvent.VK_T, Shortcut. GROUPS_ALT2+Shortcut.GROUP_DIRECT2), 150);189 KeyEvent.VK_T, Shortcut.ALT_CTRL), 150); 190 190 191 191 Main.map.mapView.addTemporaryLayer(this);
Note:
See TracChangeset
for help on using the changeset viewer.