|
发表于 2004-5-31 09:24:36
|
显示全部楼层
发虚是因为用了antialias的缘故,需要修改 /etc/fonts/fonts.conf 或 ~/.fonts.conf。取消simsun在小字体时的antialias,可以把这段代码加到上述两个文件之一中:
- <match target="font">
- <test name="family" compare="eq">
- <string>SimSun</string>
- </test>
- <test name="pixelsize" compare="less_eq">
- <double>16</double>
- </test>
- <test name="pixelsize" compare="more_eq">
- <double>8</double>
- </test>
- <edit name="antialias">
- <bool>false</bool>
- </edit>
- </match>
复制代码 |
|