Summary: | fontconfig-2.3.2-r1 user configuration files problem | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Jose Marino <braket> |
Component: | Current packages | Assignee: | Gentoo Fonts Team <fonts> |
Status: | RESOLVED FIXED | ||
Severity: | minor | ||
Priority: | High | ||
Version: | 2006.0 | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Jose Marino
2006-09-04 15:26:16 UTC
I submitted this bug to the freedesktop.org bugzilla and got a reply that fixed my problem. The bug is: https://bugs.freedesktop.org/show_bug.cgi?id=8219 The suggested fix worked fine in my machine. The fix is to enter this in your /etc/fonts/local.conf file: <match target="font"> <test name="family"> <string>fontname</string> </test> <!-- check to see if the font is just regular --> <test name="weight" compare="less_eq"> <const>medium</const> </test> <!-- check to see if the pattern requests bold --> <test target="pattern" name="weight" compare="more"> <const>medium</const> </test> <!-- set weight to bold needed for applications using Xft directly, e.g. Firefox, ... --> <edit name="weight" mode="assign"> <const>bold</const> </edit> </match> Where 'fontname' is the family name of the font. |