我使用 MacBook Pro(13 英寸,2017 年),操作系统为 macOS Catalina(10.15.7)。我使用 GoLand(即 IntelliJ 选项)工作。
在更新之后(不幸的是我应用了它),当我在外部屏幕上打开 IDE 时,其中的字体变得拉伸。
我尝试过改变 IntelliJ 的字体使其更加平滑,但是没有帮助。
~ defaults write com.jetbrains.intellij AppleFontSmoothing -int 2
~ defaults write com.jetbrains.intellij CGFontRenderingFontSmoothingDisabled -int 0
~ defaults read com.jetbrains.intellij
{
AppleFontSmoothing = 2;
CGFontRenderingFontSmoothingDisabled = 0;
}
我使用的JetBrains Mono
字体在笔记本电脑屏幕上看起来很棒,但在外部屏幕上被拉伸并且不平滑。
有什么办法可以修复它吗?
答案1
JetBrains 推荐
defaults delete AppleFontSmoothing
defaults delete CGFontRenderingFontSmoothingDisabled
defaults delete com.jetbrains.intellij AppleFontSmoothing
defaults delete com.jetbrains.intellij CGFontRenderingFontSmoothingDisabled
并尝试首选项Use font smoothing when available
中的设置General
。