Quote:
Originally Posted by pkbo
chrox, will your fix work properly if I will specify font-family: AmerigoPL, sans-serif ? I guess no, because you've set 'n' to 1, the following code will never be executed:
Code:
if (n==-1 && nn!=-1)
{
n = nn;
}
right?
|
Oops, may be it's better to patch it like this:
Code:
if (nn!=-1)
{
n = nn;
// remove family name from font list
list.erase( i, 1 );
}
though I haven't tested it yet.