File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -294,6 +294,13 @@ function configureCommandlineSwitchesSync(cliArgs) {
294294 `CalculateNativeWinOcclusion,${ app . commandLine . getSwitchValue ( 'disable-features' ) } ` ;
295295 app . commandLine . appendSwitch ( 'disable-features' , featuresToDisable ) ;
296296
297+ // Blink features to configure.
298+ // `FontMatchingCTMigration` - Siwtch font matching on macOS to CoreText (Refs https://github.com/microsoft/vscode/issues/214390).
299+ // TODO(deepak1556): Enable this feature again after updating to Electron 30.
300+ const blinkFeaturesToDisable =
301+ `FontMatchingCTMigration,${ app . commandLine . getSwitchValue ( 'disable-blink-features' ) } ` ;
302+ app . commandLine . appendSwitch ( 'disable-blink-features' , blinkFeaturesToDisable ) ;
303+
297304 // Support JS Flags
298305 const jsFlags = getJSFlags ( cliArgs ) ;
299306 if ( jsFlags ) {
You can’t perform that action at this time.
0 commit comments