ios - How to disable font smoothing in Xcode 9? -
i've got great programming font deccy looks font smoothing (anti aliasing) disabled in xcode. xcode 8 following trick:
defaults write com.apple.dt.xcode nsfontdefaultscreenfontsubstitutionenabled -bool yes defaults write com.apple.dt.xcode appleantialiasingthreshold 24
but no longer works xcode 9.
would possible disable font smoothing in xcode 9?
if 'live' in xcode , need crisp rendering of truetype font, editing xcode application defaults prefedit.app, or defaults write com.apple.dt.xcode.*
has no effect.
thinking outside box might interested in following achieve crispyness all-over mac.
since deccy font best viewed @ 12pt, makes sense raise appleantialiasingthreshold in global domain 13, default setting 4.
can suggest no applefontsmoothing.
defaults write -g applefontsmoothing -int 0 defaults write -g appleantialiasingthreshold -int 13
in addition these tweaks bit more can achieved in accessibility preference pane in system preferences: display has 2 checkmarks should try: 'differentiate without color', , 'increase contrast'.
"beauty in eye of beholder", i hope helps.
Comments
Post a Comment