From ad08cb9d2a9ed8adbeeef79023626bad10876d1a Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Fri, 4 Jun 2021 12:15:40 -0700 Subject: [PATCH] Disable consolidated run button by default. Fix #125544 --- .../workbench/contrib/notebook/browser/notebook.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts b/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts index 5c000e4c080..4bacef840b7 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts @@ -698,7 +698,7 @@ configurationRegistry.registerConfiguration({ [ConsolidatedRunButton]: { description: nls.localize('notebook.consolidatedRunButton.description', "Control whether extra actions are shown in a dropdown next to the run button."), type: 'boolean', - default: true, + default: false, tags: ['notebookLayout'] }, [NotebookCellEditorOptionsCustomizations]: editorOptionsCustomizationSchema -- GitLab