From fe4d41fa8c01d21d78ff55366e8db34dac845ca6 Mon Sep 17 00:00:00 2001 From: "Egor.Ushakov" Date: Mon, 23 Jun 2014 18:36:29 +0400 Subject: [PATCH] fixed edit shortcut for threads panel --- .../src/com/intellij/debugger/actions/DebuggerAction.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/debugger/impl/src/com/intellij/debugger/actions/DebuggerAction.java b/java/debugger/impl/src/com/intellij/debugger/actions/DebuggerAction.java index d2216191903a..86ddfaa5fc08 100644 --- a/java/debugger/impl/src/com/intellij/debugger/actions/DebuggerAction.java +++ b/java/debugger/impl/src/com/intellij/debugger/actions/DebuggerAction.java @@ -123,14 +123,14 @@ public abstract class DebuggerAction extends AnAction { return true; } }; - //listener.installOn(tree); + listener.installOn(tree); final AnAction action = ActionManager.getInstance().getAction(actionName); action.registerCustomShortcutSet(CommonShortcuts.getEditSource(), tree); return new Disposable() { public void dispose() { - //listener.uninstall(tree); + listener.uninstall(tree); action.unregisterCustomShortcutSet(tree); } };