IDEA-87812 The button "Clear the contents of the console" on the debug console is not available

This commit is contained in:
peter
2012-06-25 21:17:19 +02:00
parent 6699ca8255
commit 5dd835d08a
@@ -229,7 +229,11 @@ public class GridCellImpl implements GridCell {
@Nullable
private static TabInfo updatePresentation(TabInfo info, Content content) {
if (info == null) return info;
return info.setIcon(content.getIcon()).setText(content.getDisplayName()).setActions(content.getActions(), content.getPlace());
return info.
setIcon(content.getIcon()).
setText(content.getDisplayName()).
setActionsContextComponent(content.getActionsContextComponent()).
setActions(content.getActions(), content.getPlace());
}
public ActionCallback select(final Content content, final boolean requestFocus) {