Can I change the size of the Xcode IDE fonts?

后端 未结 3 486
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-02 18:23

I\'d like to change the font size of the \"Groups & Files\" panel of the Xcode IDE. I know how to change the \"Fonts & Colors\" in the preferences, but those (seem

3条回答
  •  有刺的猬
    2021-01-02 18:58

    I believe you can change the size of the Groups & Files pane by setting the PBXTableFontSize parameter in ~Library/Preferences/com.apple.Xcode.plist. This needs PBXTableFont to be set first to take effect.

    1) Run defaults write com.apple.Xcode PBXTableFontSize 20 in Terminal, substituting 20 for whatever value you wish to use.
    2) Run defaults write com.apple.Xcode PBXTableFont Helvetica in Terminal, substituting Helvetica for the font you wish to use. I'm not sure what OS X's default Sans Serif font is, but Helvetica is pretty generic.

提交回复
热议问题