Remove 'isMenu=true' from notebook toggle more (#6253)

This commit is contained in:
Chris LaFreniere
2019-07-02 17:22:17 -07:00
committed by GitHub
parent 8ec1a05296
commit 708461eab5

View File

@@ -49,7 +49,7 @@ export class CellToggleMoreActions {
this._moreActions = new ActionBar(this._moreActionsElement, { orientation: ActionsOrientation.VERTICAL });
this._moreActions.context = { target: this._moreActionsElement };
let validActions = this._actions.filter(a => a.canRun(context));
this._moreActions.push(this.instantiationService.createInstance(ToggleMoreWidgetAction, validActions, context), { icon: true, label: false, isMenu: true });
this._moreActions.push(this.instantiationService.createInstance(ToggleMoreWidgetAction, validActions, context), { icon: true, label: false });
}
public toggleVisible(visible: boolean): void {