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:
erik%netscape.com 2000-11-14 19:58:20 +00:00
Родитель ba3dd9c4e6
Коммит 1f7fac4968
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -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;