From e57fec5fee5c2a24e1404e9705e15dcb4183e0c0 Mon Sep 17 00:00:00 2001 From: Julia Beliaeva Date: Sun, 31 Jul 2016 09:02:43 +0300 Subject: [PATCH] [file-history] rename MyToggleAction to MyShowDetailsAction --- .../intellij/openapi/vcs/history/FileHistoryPanelImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); }