Skip to content

Commit 5bc1661

Browse files
authored
remove experimental from command center setting, #149445 (#151717)
1 parent 54b4cda commit 5bc1661

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/vs/workbench/browser/parts/titlebar/titlebarPart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { CommandCenterControl } from 'vs/workbench/browser/parts/titlebar/comman
3737

3838
export class TitlebarPart extends Part implements ITitleService {
3939

40-
private static readonly configCommandCenter = 'window.experimental.commandCenter';
40+
private static readonly configCommandCenter = 'window.commandCenter';
4141

4242
declare readonly _serviceBrand: undefined;
4343

src/vs/workbench/browser/workbench.contribution.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,10 +538,10 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
538538
'default': isMacintosh ? ' \u2014 ' : ' - ',
539539
'markdownDescription': localize("window.titleSeparator", "Separator used by `window.title`.")
540540
},
541-
'window.experimental.commandCenter': {
541+
'window.commandCenter': {
542542
type: 'boolean',
543543
default: false,
544-
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`.")
544+
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`.")
545545
},
546546
'window.menuBarVisibility': {
547547
'type': 'string',

0 commit comments

Comments
 (0)