Changeset 4966 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2012-02-17T18:06:12+01:00 (13 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/DownloadAction.java
r4964 r4966 28 28 public DownloadAction() { 29 29 super(tr("Download from OSM..."), "download", tr("Download map data from the OSM server."), 30 Shortcut.registerShortcut("file:download", tr("File: {0}", tr("Download from OSM...")), KeyEvent.VK_D, Shortcut.GROUP_ DIRECT), true);30 Shortcut.registerShortcut("file:download", tr("File: {0}", tr("Download from OSM...")), KeyEvent.VK_DOWN, Shortcut.GROUP_HOTKEY+Shortcut.GROUPS_ALT1), true); 31 31 putValue("help", ht("/Action/Download")); 32 32 } -
trunk/src/org/openstreetmap/josm/actions/UploadAction.java
r4963 r4966 87 87 public UploadAction() { 88 88 super(tr("Upload data"), "upload", tr("Upload all changes in the active data layer to the OSM server"), 89 Shortcut.registerShortcut("file:upload", tr("File: {0}", tr("Upload data")), KeyEvent.VK_U, Shortcut.GROUP_ DIRECT), true);89 Shortcut.registerShortcut("file:upload", tr("File: {0}", tr("Upload data")), KeyEvent.VK_UP, Shortcut.GROUP_HOTKEY+Shortcu.GROUPS_ALT1), true); 90 90 putValue("help", ht("/Action/Upload")); 91 91 }
Note:
See TracChangeset
for help on using the changeset viewer.