[file-history] rename MyToggleAction to MyShowDetailsAction

This commit is contained in:
Julia Beliaeva
2016-07-31 18:27:10 +03:00
parent 303966932e
commit e57fec5fee
@@ -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);
}