Index: applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandAction.java
===================================================================
--- applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandAction.java	(revision 27852)
+++ applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandAction.java	(revision 27906)
@@ -37,5 +37,5 @@
 	private Command parentCommand;
 	public CommandAction(Command parentCommand, CommandLine parentPlugin) {
-		super(tr(parentCommand.name), "blankmenu", tr(parentCommand.name), null, false, false);
+		super(tr(parentCommand.name), "blankmenu", tr(parentCommand.name), null, true, parentCommand.name, true);
 		if (!parentCommand.icon.equals("")) {
 			try {
@@ -48,7 +48,4 @@
 			}
 		}
-		putValue("toolbar", parentCommand.name);
-		Main.toolbar.register(this);
-		installAdapters();
 
 		this.parentCommand = parentCommand;
Index: applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLineAction.java
===================================================================
--- applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLineAction.java	(revision 27852)
+++ applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLineAction.java	(revision 27906)
@@ -41,5 +41,5 @@
 	public CommandLineAction(CommandLine parentPlugin) {
 		super(tr("Command line"), "blankmenu", tr("Set input focus to the command line."),
-		Shortcut.registerShortcut("edit:simplifyArea", tr("Tool: {0}", tr("Command line")), KeyEvent.VK_ENTER, Shortcut.DIRECT), true);
+		Shortcut.registerShortcut("tool:commandline", tr("Tool: {0}", tr("Command line")), KeyEvent.VK_ENTER, Shortcut.DIRECT), true, "commandline", true);
 		this.parentPlugin = parentPlugin;
 	}
