|
|

楼主 |
发表于 2005-10-5 23:05:39
|
显示全部楼层
当然是搜索过了
只有这里讨论过。http://www.linuxsir.cn/bbs/showthread.php?t=204651&page=1
基本上就是说加下面这段代码。但这只影响到gnome程序,firefox和opara都不行。
- <match target="font">
- <!-- check to see if the font is just regular -->
- <test name="weight" compare="less_eq">
- <int>100</int>
- </test>
- <!-- check to see if the pattern requests bold -->
- <test target="pattern" name="weight" compare="more_eq">
- <int>180</int>
- </test>
- <!-- set the embolden flag -->
- <edit name="embolden" mode="assign">
- <bool>true</bool>
- </edit>
- </match>
复制代码 |
|