Changeset 27906 in osm for applications/editors/josm/plugins/mirrored_download
- Timestamp:
- 2012-02-20T19:25:50+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/mirrored_download/src/mirrored_download
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mirrored_download/src/mirrored_download/DownloadAction2.java
r27852 r27906 29 29 public DownloadAction2() { 30 30 super(tr("Download from OSM mirror..."), null, tr("Download map data from the OSM server."), 31 Shortcut.registerShortcut("mirror:download", tr("File: {0}", tr("Download from OSM mirror...")), KeyEvent.VK_DOWN, Shortcut.ALT_SHIFT), true); 31 Shortcut.registerShortcut("mirror:download", tr("File: {0}", tr("Download from OSM mirror...")), KeyEvent.VK_DOWN, Shortcut.ALT_SHIFT), 32 true, "mirroreddownload/download", true); 32 33 putValue("help", ht("/Action/MirroredDownload")); 33 34 } -
applications/editors/josm/plugins/mirrored_download/src/mirrored_download/UrlSelectionAction.java
r27852 r27906 25 25 public UrlSelectionAction() { 26 26 super(tr("Select URL..."), null, tr("Select URL to download from."), 27 Shortcut.registerShortcut("file:selecturl", tr("File: {0}", tr("Select URL...")), KeyEvent.VK_D, Shortcut.CTRL_SHIFT), true); 27 Shortcut.registerShortcut("file:selecturl", tr("File: {0}", tr("Select URL...")), KeyEvent.VK_D, Shortcut.CTRL_SHIFT), 28 true, "mirroreddownload/urlselection", true); 28 29 putValue("help", ht("/Action/SelectUrl")); 29 30 }
Note:
See TracChangeset
for help on using the changeset viewer.