From f2b2854a6b251278ca387a4326401f2d3a7eabcd Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 21 Jan 2021 16:49:13 +0100 Subject: [PATCH] (for now) have tab decoration off by default, https://github.com/microsoft/vscode/issues/49382 --- src/vs/workbench/browser/workbench.contribution.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/browser/workbench.contribution.ts b/src/vs/workbench/browser/workbench.contribution.ts index 4fa5fe3b5d26f..b6af6ced0ef0c 100644 --- a/src/vs/workbench/browser/workbench.contribution.ts +++ b/src/vs/workbench/browser/workbench.contribution.ts @@ -51,12 +51,12 @@ import { isStandalone } from 'vs/base/browser/browser'; 'workbench.editor.decorations.badges': { 'type': 'boolean', 'markdownDescription': nls.localize('decorations.badges', "Controls whether editor file decorations should use badges."), - 'default': true + 'default': false }, 'workbench.editor.decorations.colors': { 'type': 'boolean', 'markdownDescription': nls.localize('decorations.colors', "Controls whether editor file decorations should use colors."), - 'default': true + 'default': false }, 'workbench.editor.labelFormat': { 'type': 'string',