diff --git a/ChangeLog b/ChangeLog index 2d6bf0043..9034c5ff5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-08 Fred Kiefer + + * Source/NSBezierPath.m (+drawPackedGlyphs:atPoint:): Use fill + instead of stroke to draw the glyphs. + 2008-04-07 Fred Kiefer * Source/NSFont.m (NSConvertGlyphsToPackedGlyphs): Store the glyph diff --git a/Source/NSBezierPath.m b/Source/NSBezierPath.m index eb709d394..0341c6f9c 100644 --- a/Source/NSBezierPath.m +++ b/Source/NSBezierPath.m @@ -180,7 +180,7 @@ typedef struct _PathElement [path moveToPoint: aPoint]; [path appendBezierPathWithPackedGlyphs: packedGlyphs]; - [path stroke]; + [path fill]; RELEASE(path); }