fixed edit shortcut for threads panel

This commit is contained in:
Egor.Ushakov
2014-06-23 18:37:15 +04:00
parent 2249533ae6
commit fe4d41fa8c
@@ -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);
}
};