mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-20 07:09:53 +01:00
fix: disable core text font matching on macOS (#224913)
This commit is contained in:
+2
-1
@@ -324,8 +324,9 @@ function configureCommandlineSwitchesSync(cliArgs) {
|
||||
app.commandLine.appendSwitch('disable-features', featuresToDisable);
|
||||
|
||||
// Blink features to configure.
|
||||
// `FontMatchingCTMigration` - Siwtch font matching on macOS to Appkit (Refs https://github.com/microsoft/vscode/issues/224496#issuecomment-2270418470).
|
||||
const blinkFeaturesToDisable =
|
||||
`${app.commandLine.getSwitchValue('disable-blink-features')}`;
|
||||
`FontMatchingCTMigration,${app.commandLine.getSwitchValue('disable-blink-features')}`;
|
||||
app.commandLine.appendSwitch('disable-blink-features', blinkFeaturesToDisable);
|
||||
|
||||
// Support JS Flags
|
||||
|
||||
Reference in New Issue
Block a user