From 8fe916ca51d0d173b3fd64d6e3327139132232e1 Mon Sep 17 00:00:00 2001 From: David Turner Date: Fri, 16 Feb 2001 16:27:35 +0000 Subject: [PATCH] fixed a small bug (the advance and format were not copied in FT_Glyph_Copy) --- src/base/ftglyph.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/base/ftglyph.c b/src/base/ftglyph.c index 510dcbe25..95049ae60 100644 --- a/src/base/ftglyph.c +++ b/src/base/ftglyph.c @@ -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 );