From bfa8c3d00bc1027c306434cceb0cc2e5291df196 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 7 Feb 2019 09:13:07 +0100 Subject: [PATCH] debt - properly disable-color-correct-rendering --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 5d6dcfca955..8a1975d75fc 100644 --- a/src/main.js +++ b/src/main.js @@ -151,7 +151,7 @@ function onReady() { function configureCommandlineSwitches(cliArgs, nodeCachedDataDir) { // Force pre-Chrome-60 color profile handling (for https://github.com/Microsoft/vscode/issues/51791) - app.commandLine.appendSwitch('disable-features', 'ColorCorrectRendering'); + app.commandLine.appendSwitch('disable-color-correct-rendering'); // Support JS Flags const jsFlags = resolveJSFlags(cliArgs, nodeCachedDataDir.jsFlags()); -- GitLab