gdi32: Ignore fonts with names that begin with a '.'.

oldstable
Huw Davies 2008-03-21 10:32:45 +00:00 committed by Alexandre Julliard
parent fad9b692cb
commit 4b6d284de6
1 changed files with 7 additions and 0 deletions

View File

@ -1227,6 +1227,13 @@ static INT AddFontToList(const char *file, void *font_data_ptr, DWORD font_data_
return 0;
}
if(ft_face->family_name[0] == '.') /* Ignore fonts with names beginning with a dot */
{
TRACE("Ignoring %s since its family name begins with a dot\n", debugstr_a(file));
pFT_Done_Face(ft_face);
return 0;
}
if (target_family)
{
localised_family = get_familyname(ft_face);