fixed a small bug (the advance and format were not copied in

FT_Glyph_Copy)
This commit is contained in:
David Turner 2001-02-16 16:27:35 +00:00
parent 228859b229
commit 532e02ad82
1 changed files with 3 additions and 0 deletions

View File

@ -396,6 +396,9 @@
if ( error )
goto Exit;
copy->advance = source->advance;
copy->format = source->format;
if ( clazz->glyph_copy )
error = clazz->glyph_copy( source, copy );