From 708461eab5488317835750748e2c3275eef82a63 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Tue, 2 Jul 2019 17:22:17 -0700 Subject: [PATCH] Remove 'isMenu=true' from notebook toggle more (#6253) --- src/sql/workbench/parts/notebook/cellToggleMoreActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/parts/notebook/cellToggleMoreActions.ts b/src/sql/workbench/parts/notebook/cellToggleMoreActions.ts index 39ad826a8e..a30bf8a9ff 100644 --- a/src/sql/workbench/parts/notebook/cellToggleMoreActions.ts +++ b/src/sql/workbench/parts/notebook/cellToggleMoreActions.ts @@ -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 {