From 6a3c0d5bd7333682aed9d465479ade5c3d9e6689 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Tue, 29 Oct 2019 15:34:03 +0100 Subject: [PATCH] fix #83508 --- src/main.js | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/main.js b/src/main.js index 3fa258c8051..92d4f827755 100644 --- a/src/main.js +++ b/src/main.js @@ -220,20 +220,15 @@ function createDefaultArgvConfigSync(argvConfigPath) { '//', '// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT', '//', - '// If the command line argument does not have any values, simply assign', - '// it in the JSON below with a value of \'true\'. Otherwise, put the value', - '// directly.', - '//', - '// If you see rendering issues in VS Code and have a better experience', - '// with software rendering, you can configure this by adding:', - '//', - '// \'disable-hardware-acceleration\': true', - '//', '// NOTE: Changing this file requires a restart of VS Code.', '{', ' // Enabled by default by VS Code to resolve color issues in the renderer', ' // See https://github.com/Microsoft/vscode/issues/51791 for details', - ' "disable-color-correct-rendering": true' + ' "disable-color-correct-rendering": true,', + '', + ' // Use software rendering instead of hardware accelerated rendering.', + ' // This can help in cases where you see rendering issues in VS Code.', + ' // "disable-hardware-acceleration": true' ]; if (legacyLocale) { -- GitLab