|
|

楼主 |
发表于 2006-7-1 06:06:56
|
显示全部楼层
Post by theseus
升级了 xorg 以后就发虚了, 其他gtk程序不是这样。
已经用过的手段:
1. GDK_USE_XFT=0
2. MOZ_DISABLE_PANGO=1
3. /etc/fonts/fonts.conf 已经关闭了 antialias
发现问题的所在了。
原来 /etc/fonts/local.conf
- <match target="pattern">
- <test qual="any" name="size" compare="less">
- <int>17</int>
- </test>
- <test qual="any" name="size" compare="more">
- <int>11</int>
- </test>
- <edit name="antialias" mode="assign">
- <bool>false</bool>
- </edit>
- </match>
复制代码
改成
- <match target="pattern">
- <test qual="any" name="pixelsize" compare="less">
- <int>17</int>
- </test>
- <test qual="any" name="pixelsize" compare="more">
- <int>11</int>
- </test>
- <edit name="antialias" mode="assign">
- <bool>false</bool>
- </edit>
- </match>
复制代码 |
|