зеркало из https://github.com/mozilla/pjs.git
bug 42917; r=timeless,pavlov,bstell; sr=blizzard; need to increment
mFontsIndex only after we fail to load any font for the current family
This commit is contained in:
Родитель
ba3dd9c4e6
Коммит
1f7fac4968
|
@ -2938,7 +2938,7 @@ nsFontMetricsGTK::FindLocalFont(PRUnichar aChar)
|
|||
if (mFontIsGeneric[mFontsIndex]) {
|
||||
return nsnull;
|
||||
}
|
||||
nsCString* familyName = mFonts.CStringAt(mFontsIndex++);
|
||||
nsCString* familyName = mFonts.CStringAt(mFontsIndex);
|
||||
|
||||
/*
|
||||
* count hyphens
|
||||
|
@ -2978,6 +2978,8 @@ nsFontMetricsGTK::FindLocalFont(PRUnichar aChar)
|
|||
return font;
|
||||
}
|
||||
}
|
||||
// bug 42917: increment only after all of the above fails
|
||||
mFontsIndex++;
|
||||
}
|
||||
|
||||
return nsnull;
|
||||
|
|
Загрузка…
Ссылка в новой задаче