mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-87812 The button "Clear the contents of the console" on the debug console is not available
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user