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.

default rendering

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'.

contrast rendering

"beauty in eye of beholder", i hope helps.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -