Bug 1243226 - relax the limit on fontconfig generics. r=heycam, a=me

This commit is contained in:
John Daggett 2016-01-27 17:21:31 +09:00
Родитель c732ee5f50
Коммит 03e62378ba
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -1554,10 +1554,8 @@ gfxFcPlatformFontList::FindGenericFamilies(const nsAString& aGeneric,
bool foundLang = !fcLang.IsEmpty() &&
PatternHasLang(font, ToFcChar8Ptr(fcLang.get()));
foundFontWithLang = foundFontWithLang || foundLang;
// stop at the first family for which the lang matches (or
// when there is no lang)
if (fcLang.IsEmpty() ||
prefFonts->Length() >= limit || foundLang) {
// check to see if the list is full
if (prefFonts->Length() >= limit) {
break;
}
}