簡體   English   中英

更新到 v.1.69.2 后我的 MAC 上的 VS 代碼出現問題

[英]VS code on my MAC after update to v.1.69.2 appearance problem

在此處輸入圖像描述 我將我的 MAC 上的 VS 代碼更新為 v.1.69.2 當我打開它時我看不到活動欄上的圖標 這些圖標仍然隱藏然后當鼠標懸停時我也可以看到 select 我的文件代碼我可以不把鼠標放在上面就看不見
任何關於退回我的 IDE 的建議都可以正常工作

在此處輸入圖像描述

這與硬件加速有關。 嘗試在文件/Users/<your_username>/.vscode/argv.json中禁用它並取消注釋"disable-hardware-acceleration": true, . 然后,確保先退出 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"
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM