mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
gdi32: Ignore fonts with names that begin with a '.'.
This commit is contained in:
parent
fad9b692cb
commit
4b6d284de6
1 changed files with 7 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue