更新到 v.1.69.2 后我的 MAC 上的 VS code 出现问题

Ahm*_*aih 7 macos appearance visual-studio-code

在此输入图像描述我将 MAC 上的 VS 代码更新为 v.1.69.2,当我打开它时,我看不到活动栏上的图标,图标仍然隐藏,然后当鼠标悬停时,我也可以看到当我选择文件代码时,我可以如果不将鼠标放在上面,就看不到
任何让我的 IDE 正常工作的建议

在此输入图像描述

lep*_*sch 20

这与硬件加速有关。尝试在文件中禁用它/Users/<your_username>/.vscode/argv.json并取消注释该行"disable-hardware-acceleration": true,。然后,确保先退出 IDE,然后重新启动 IDE。

它将变成以下内容:

// This configuration file allows you to pass permanent command line arguments to VS Code.
// Only a subset of arguments is currently supported to reduce the likelihood of breaking
// the installation.
//
// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT
//
// NOTE: Changing this file requires a restart of VS Code.
{
    // 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,

    // 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,

    // Allows to disable crash reporting.
    // Should restart the app if the value is changed.
    "enable-crash-reporter": true,

    // Unique id used for correlating crash reports sent from this instance.
    // Do not edit this value.
    "crash-reporter-id": "81f0b16e-4c41-4fd3-b37c-b04c643b5f79"
}

Run Code Online (Sandbox Code Playgroud)