Changeset 27819 in osm for applications/editors/josm/plugins/trustosm
- Timestamp:
- 2012-02-17T10:18:51+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/trustosm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/trustosm/build.xml
r26990 r27819 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="4 549"/>34 <property name="plugin.main.version" value="4961"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/actions/ExportSigsAction.java
r24389 r27819 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_ E,Shortcut.GROUP_MENU));19 Shortcut.registerShortcut("file:exportsigs", tr("Export sigs to XML..."), KeyEvent.VK_X, Shortcut.GROUPS_ALT2+Shortcut.GROUP_MENU)); 20 20 } 21 21 -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/dialogs/TrustDialog.java
r27465 r27819 18 18 import java.awt.event.KeyEvent; 19 19 import java.awt.geom.GeneralPath; 20 import java.util.Arrays; 20 21 import java.util.ArrayList; 21 22 import java.util.Collection; … … 186 187 super(tr("Object signatures"), "trustosm", tr("Open object signing window."), 187 188 Shortcut.registerShortcut("subwindow:trustosm", tr("Toggle: {0}", tr("Object signatures")), 188 KeyEvent.VK_T, Shortcut.GROUP _LAYER, Shortcut.SHIFT_DEFAULT), 150);189 KeyEvent.VK_T, Shortcut.GROUPS_ALT2+Shortcut.GROUP_DIRECT2), 150); 189 190 190 191 Main.map.mapView.addTemporaryLayer(this);
Note:
See TracChangeset
for help on using the changeset viewer.