Index: /applications/editors/josm/plugins/relcontext/src/relcontext/RelContextDialog.java
===================================================================
--- /applications/editors/josm/plugins/relcontext/src/relcontext/RelContextDialog.java	(revision 25726)
+++ /applications/editors/josm/plugins/relcontext/src/relcontext/RelContextDialog.java	(revision 25727)
@@ -517,5 +517,5 @@
             super("…", null, tr("Enter role for selected members"),
                     Shortcut.registerShortcut("reltoolbox:changerole", tr("Relation Toolbox: {0}", tr("Enter role for selected members")),
-                    KeyEvent.VK_R, Shortcut.GROUP_EDIT), true);
+                    KeyEvent.VK_R, Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), true);
             chosenRelation.addChosenRelationListener(this);
             updateEnabledState();
Index: /applications/editors/josm/plugins/relcontext/src/relcontext/actions/CreateMultipolygonAction.java
===================================================================
--- /applications/editors/josm/plugins/relcontext/src/relcontext/actions/CreateMultipolygonAction.java	(revision 25726)
+++ /applications/editors/josm/plugins/relcontext/src/relcontext/actions/CreateMultipolygonAction.java	(revision 25727)
@@ -6,4 +6,5 @@
 import java.awt.event.ActionEvent;
 import java.awt.event.ActionListener;
+import java.awt.event.KeyEvent;
 import java.util.*;
 import javax.swing.*;
@@ -13,4 +14,5 @@
 import org.openstreetmap.josm.data.osm.*;
 import org.openstreetmap.josm.tools.GBC;
+import org.openstreetmap.josm.tools.Shortcut;
 import relcontext.ChosenRelation;
 
@@ -27,5 +29,7 @@
 
     public CreateMultipolygonAction( ChosenRelation chRel ) {
-        super("Multi", "data/multipolygon", tr("Create a multipolygon from selected objects"), null, false);
+        super("Multi", "data/multipolygon", tr("Create a multipolygon from selected objects"),
+                Shortcut.registerShortcut("reltoolbox:multipolygon", tr("Relation Toolbox: {0}", tr("Create multipolygon")),
+                KeyEvent.VK_B, Shortcut.GROUP_HOTKEY), true);
         this.chRel = chRel;
         updateEnabledState();
Index: /applications/editors/josm/plugins/relcontext/src/relcontext/actions/CreateRelationAction.java
===================================================================
--- /applications/editors/josm/plugins/relcontext/src/relcontext/actions/CreateRelationAction.java	(revision 25726)
+++ /applications/editors/josm/plugins/relcontext/src/relcontext/actions/CreateRelationAction.java	(revision 25727)
@@ -8,4 +8,5 @@
 import java.awt.event.ActionEvent;
 import java.awt.event.ActionListener;
+import java.awt.event.KeyEvent;
 import java.util.Arrays;
 import java.util.List;
@@ -22,6 +23,6 @@
 import org.openstreetmap.josm.gui.tagging.ac.AutoCompletingComboBox;
 import org.openstreetmap.josm.tools.GBC;
+import org.openstreetmap.josm.tools.Shortcut;
 import relcontext.ChosenRelation;
-import relcontext.RelContextDialog;
 
 /**
@@ -36,5 +37,7 @@
 
     public CreateRelationAction( ChosenRelation chRel ) {
-        super(tr("New"), "data/relation", tr("Create a relation from selected objects"), null, false);
+        super(tr("New"), "data/relation", tr("Create a relation from selected objects"),
+                Shortcut.registerShortcut("reltoolbox:create", tr("Relation Toolbox: {0}", tr("Create a new relation")),
+                KeyEvent.VK_C, Shortcut.GROUP_HOTKEY, Shortcut.SHIFT_DEFAULT), true);
         this.chRel = chRel;
         updateEnabledState();
Index: /applications/editors/josm/plugins/relcontext/src/relcontext/actions/FindRelationAction.java
===================================================================
--- /applications/editors/josm/plugins/relcontext/src/relcontext/actions/FindRelationAction.java	(revision 25726)
+++ /applications/editors/josm/plugins/relcontext/src/relcontext/actions/FindRelationAction.java	(revision 25727)
@@ -29,5 +29,5 @@
         super("Find", "relcontext/find", tr("Find a relation"),
                 Shortcut.registerShortcut("reltoolbox:find", tr("Relation Toolbox: {0}", tr("Find a relation")),
-                KeyEvent.VK_F, Shortcut.GROUP_EDIT), true);
+                KeyEvent.VK_F, Shortcut.GROUP_HOTKEY), true);
         this.chRel = chRel;
     }
