forked from wezm/wezm.net
QA /technical/2009/09/font-smoothing-in-snow-leopard/
This commit is contained in:
parent
92d188dce0
commit
04dfd68112
1 changed files with 5 additions and 4 deletions
|
@ -1,8 +1,9 @@
|
||||||
Apple have touted Mac OS X Snow Leopard as having no new features. Whilst there are no new big ticket features there have been plenty of tweaks and refinements. One part that got this treatment was the font smoothing options in System Preferences. In Leopard this allowed you to enable font smoothing and choose between four different levels of smoothing. In Snow Leopard there's now only a single option to enable the smoothing.
|
Apple have touted Mac OS X Snow Leopard as having no new features. Whilst there are no new big ticket features there have been plenty of tweaks and refinements. One part that got this treatment was the font smoothing options in System Preferences. In Leopard this allowed you to enable font smoothing and choose between four different levels of smoothing. In Snow Leopard there's now only a single option to enable the smoothing.
|
||||||
|
|
||||||
The problem with this change is that is appears to default to the light option. As previously identified in, "<a href="http://www.wezm.net/2009/03/consolas-on-mac-update/">Consolas on Mac Update</a>", my preferred fixed width font Consolas doesn't look nice with the light smoothing and I prefer medium. Fortunately you can still choose the medium option but setting the preference directly via the defaults command in the Terminal:
|
The problem with this change is that is appears to default to the light option. As previously identified in, "<a href="/technical/2009/03/consolas-on-mac-update/">Consolas on Mac Update</a>", my preferred fixed width font Consolas doesn't look nice with the light smoothing and I prefer medium. Fortunately you can still choose the medium option by setting the preference directly via the defaults command in the Terminal:
|
||||||
|
|
||||||
<!--more-->
|
<!--more-->
|
||||||
<code>defaults -currentHost write -globalDomain AppleFontSmoothing -int 2</code>
|
defaults -currentHost write -globalDomain AppleFontSmoothing -int 2
|
||||||
|
|
||||||
You will need to relaunch any running applications for the change to be picked up. You can do this either by quitting and relaunching or logging out and then back in again.
|
You will need to relaunch any running applications for the change to be picked up. You can do this either by quitting and relaunching or logging out and then back in again.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue