use of com.intellij.openapi.vcs.annotate.ShowAllAffectedGenericAction in project intellij-community by JetBrains.
the class GitSkippedCommits method addActionsTo.
@Override
protected void addActionsTo(DefaultActionGroup group) {
super.addActionsTo(group);
ShowAllAffectedGenericAction showCommit = ShowAllAffectedGenericAction.getInstance();
showCommit.registerCustomShortcutSet(new CustomShortcutSet(CommonShortcuts.DOUBLE_CLICK_1.getShortcuts()[0]), myTree);
group.addAction(showCommit);
}
Aggregations