From ebd67244fb2da33ab078bb2baa96106fda29f336 Mon Sep 17 00:00:00 2001 From: Tyler James Leonhardt Date: Mon, 28 Aug 2023 19:14:10 -0700 Subject: [PATCH] Turn on Command Center by default (#191550) * Turn on Command Center by default Fixes https://github.com/microsoft/vscode/issues/191549 * remove tag --- src/vs/workbench/browser/workbench.contribution.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vs/workbench/browser/workbench.contribution.ts b/src/vs/workbench/browser/workbench.contribution.ts index 5b1d769a4a4..e41769f836d 100644 --- a/src/vs/workbench/browser/workbench.contribution.ts +++ b/src/vs/workbench/browser/workbench.contribution.ts @@ -583,8 +583,7 @@ const registry = Registry.as(ConfigurationExtensions.Con }, 'window.commandCenter': { type: 'boolean', - default: false, - tags: ['experimental'], + default: true, markdownDescription: isWeb ? localize('window.commandCenterWeb', "Show command launcher together with the window title.") : localize({ key: 'window.commandCenter', comment: ['{0} is a placeholder for a setting identifier.'] }, "Show command launcher together with the window title. This setting only has an effect when {0} is set to {1}.", '`#window.titleBarStyle#`', '`custom`')