We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e7eb3 commit 42e21c2Copy full SHA for 42e21c2
1 file changed
src/main.js
@@ -82,7 +82,7 @@ app.once('ready', function () {
82
traceOptions: args['trace-options'] || 'record-until-full,enable-sampling'
83
};
84
85
- contentTracing.startRecording(traceOptions, () => onReady());
+ contentTracing.startRecording(traceOptions).finally(() => onReady());
86
} else {
87
onReady();
88
}
@@ -162,6 +162,9 @@ function configureCommandlineSwitchesSync(cliArgs) {
162
app.commandLine.appendSwitch('js-flags', jsFlags);
163
164
165
+ // TODO@Ben TODO@Deepak Electron 7 workaround for https://github.com/microsoft/vscode/issues/88873
166
+ app.commandLine.appendSwitch('disable-features', 'LayoutNG');
167
+
168
return argvConfig;
169
170
0 commit comments