diff --git a/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java b/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java index d36ea5902901..e2d5c4366825 100644 --- a/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java +++ b/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java @@ -492,7 +492,7 @@ public class FileHistoryPanelImpl extends PanelWithActionsAndCloseButton impleme } result.add(new RefreshFileHistoryAction()); if (!myIsStaticAndEmbedded) { - result.add(new MyToggleAction()); + result.add(new MyShowDetailsAction()); } if (!popup && supportsTree()) { @@ -1645,9 +1645,9 @@ public class FileHistoryPanelImpl extends PanelWithActionsAndCloseButton impleme } } - private class MyToggleAction extends ToggleAction implements DumbAware { + private class MyShowDetailsAction extends ToggleAction implements DumbAware { - public MyToggleAction() { + public MyShowDetailsAction() { super("Show Details", "Display details panel", AllIcons.Actions.Preview); }