| 
 | 
 
如果我在fonts.conf中使用strong bind一个英文字体的话,同时设置中文字体取消antialias,如下: 
[code:1] 
        <match target="font"> 
                <test qual="any" name="family"> 
                        <string>SimSun</string> 
                </test> 
                <test name="pixelsize" compare="more_eq"> 
                        <int>12</int> 
                </test> 
                <test name="pixelsize" compare="less_eq"> 
                        <int>19</int> 
                </test> 
                <edit name="antialias" mode="assign"> 
                        <bool>false</bool> 
                </edit> 
        </match> 
[/code:1] 
 
这时,系统无法将bind的英文字体和中文区分开,也就是说bind的英文字体也被取消了antialias;结果,mozilla就花了. 
 
不知有什么好办法来解决? 
(为什么gedit又不受影响呢?) |   
 
 
 
 |