Index: applications/editors/josm/plugins/usertools/src/usertools/UserToolsPlugin.java
===================================================================
--- applications/editors/josm/plugins/usertools/src/usertools/UserToolsPlugin.java	(revision 13426)
+++ applications/editors/josm/plugins/usertools/src/usertools/UserToolsPlugin.java	(revision 13455)
@@ -72,6 +72,5 @@
             userJMenu.removeAll();
         }
-
-        userJMenu.add(new JMenuItem(new JosmAction(tr("Show Author Panel"),
+        JosmAction a = new JosmAction(tr("Show Author Panel"),
         "dialogs/userlist", tr("Show Author Panel"), null, false) {
             public void actionPerformed(ActionEvent ev) {
@@ -89,9 +88,10 @@
                 uld.setVisible(true);
             }
-        }));
+        };
+        a.putValue("toolbar", "usertools_show");
+        userJMenu.add(new JMenuItem(a));
 
         userJMenu.addSeparator();
-        // userJMenu.addSeparator();
-        userJMenu.add(new JMenuItem(new JosmAction(tr("Open User Page"),
+        a = new JosmAction(tr("Open User Page"),
                 "presets/letter", tr("Open User Page in browser"), null, false) {
             public void actionPerformed(ActionEvent ev) {
@@ -103,7 +103,9 @@
                 }
             }
-        }));
+        };
+        a.putValue("toolbar", "usertools_open");
+        userJMenu.add(new JMenuItem(a));
 
-        userJMenu.add(new JMenuItem(new JosmAction(tr("Select User's Data"),
+        a = new JosmAction(tr("Select User's Data"),
         "dialogs/search", tr("Replaces Selection with Users data"), null, false) {
             public void actionPerformed(ActionEvent ev) {
@@ -114,5 +116,7 @@
                 }
             }
-        }));
+        };
+        a.putValue("toolbar", "usertools_search");
+        userJMenu.add(new JMenuItem(a));
 
         setEnabledAll(false);
