Skip to content

Commit

Permalink
remove experimental from command center setting, #149445
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jun 10, 2022
1 parent 66f8ae4 commit 2a4407c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/parts/titlebar/titlebarPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
4 changes: 2 additions & 2 deletions src/vs/workbench/browser/workbench.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 2a4407c

Please sign in to comment.