From a6c0ce8b393898e48e7991991f579223389e4ed8 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 1 Oct 2020 12:18:14 +0000 Subject: [PATCH] :lipstick: --- .../services/environment/browser/environmentService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/services/environment/browser/environmentService.ts b/src/vs/workbench/services/environment/browser/environmentService.ts index 1b211fca538..8d5e0fb7966 100644 --- a/src/vs/workbench/services/environment/browser/environmentService.ts +++ b/src/vs/workbench/services/environment/browser/environmentService.ts @@ -8,7 +8,7 @@ import { joinPath } from 'vs/base/common/resources'; import { URI } from 'vs/base/common/uri'; import { generateUuid } from 'vs/base/common/uuid'; import { IExtensionHostDebugParams } from 'vs/platform/environment/common/environment'; -import { IPath, IWindowConfiguration } from 'vs/platform/windows/common/windows'; +import { IColorScheme, IPath, IWindowConfiguration } from 'vs/platform/windows/common/windows'; import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/common/environmentService'; import { IWorkbenchConstructionOptions as IWorkbenchOptions } from 'vs/workbench/workbench.web.api'; import { IProductService } from 'vs/platform/product/common/productService'; @@ -70,7 +70,7 @@ class BrowserWorkbenchConfiguration implements IWindowConfiguration { return undefined; } - get colorScheme() { + get colorScheme(): IColorScheme { return { dark: false, highContrast: false }; } } -- GitLab