Index: trunk/src/org/openstreetmap/josm/actions/DownloadNotesInViewAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/DownloadNotesInViewAction.java	(revision 17048)
+++ trunk/src/org/openstreetmap/josm/actions/DownloadNotesInViewAction.java	(revision 17049)
@@ -5,4 +5,5 @@
 
 import java.awt.event.ActionEvent;
+import java.awt.event.KeyEvent;
 import java.util.concurrent.Future;
 
@@ -14,4 +15,5 @@
 import org.openstreetmap.josm.io.NetworkManager;
 import org.openstreetmap.josm.io.OnlineResource;
+import org.openstreetmap.josm.tools.Shortcut;
 
 /**
@@ -23,5 +25,7 @@
 
     private DownloadNotesInViewAction(String iconName) {
-        super(tr("Download notes in current view"), iconName, tr("Download notes in current view"), null, false,
+        super(tr("Download notes in current view"), iconName, tr("Download notes in current view"),
+                Shortcut.registerShortcut("file:downloadnotesinview",
+                tr("Download notes in current view"), KeyEvent.CHAR_UNDEFINED, Shortcut.NONE), false,
                 "dialogs/notes/download_in_view", true);
     }
Index: trunk/src/org/openstreetmap/josm/actions/DownloadOsmInViewAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/DownloadOsmInViewAction.java	(revision 17048)
+++ trunk/src/org/openstreetmap/josm/actions/DownloadOsmInViewAction.java	(revision 17049)
@@ -5,4 +5,5 @@
 
 import java.awt.event.ActionEvent;
+import java.awt.event.KeyEvent;
 import java.util.concurrent.Future;
 
@@ -15,4 +16,5 @@
 import org.openstreetmap.josm.io.NetworkManager;
 import org.openstreetmap.josm.io.OnlineResource;
+import org.openstreetmap.josm.tools.Shortcut;
 
 /**
@@ -27,5 +29,7 @@
      */
     public DownloadOsmInViewAction() {
-        super(tr("Download in current view"), "download_in_view", tr("Download map data from the OSM server in current view"), null, false,
+        super(tr("Download in current view"), "download_in_view", tr("Download map data from the OSM server in current view"),
+                Shortcut.registerShortcut("file:downloadosminview",
+                tr("Download in current view"), KeyEvent.CHAR_UNDEFINED, Shortcut.NONE), false,
                 "dialogs/download_in_view", true);
     }
