remove experimental from command center setting, https://github.com/microsoft/vscode/issues/149445 (#151717)

This commit is contained in:
Johannes Rieken 2022-06-10 13:59:23 +02:00 committed by GitHub
parent 54b4cda07a
commit 5bc1661bc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -37,7 +37,7 @@ import { CommandCenterControl } from 'vs/workbench/browser/parts/titlebar/comman
export class TitlebarPart extends Part implements ITitleService {
private static readonly configCommandCenter = 'window.experimental.commandCenter';
private static readonly configCommandCenter = 'window.commandCenter';
declare readonly _serviceBrand: undefined;

View file

@ -538,10 +538,10 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
'default': isMacintosh ? ' \u2014 ' : ' - ',
'markdownDescription': localize("window.titleSeparator", "Separator used by `window.title`.")
},
'window.experimental.commandCenter': {
'window.commandCenter': {
type: 'boolean',
default: false,
markdownDescription: localize('window.experimental.commandCenter', "Show command launcher together with the window title. This setting only has an effect when `#window.titleBarStyle#` is set to `custom`.")
markdownDescription: localize('window.commandCenter', "Show command launcher together with the window title. This setting only has an effect when `#window.titleBarStyle#` is set to `custom`.")
},
'window.menuBarVisibility': {
'type': 'string',