Use fill instead of stroke to draw the glyphs.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26440 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2008-04-08 07:57:11 +00:00
parent e87446b5cb
commit 3811a82a38
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-04-08 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSBezierPath.m (+drawPackedGlyphs:atPoint:): Use fill
instead of stroke to draw the glyphs.
2008-04-07 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSFont.m (NSConvertGlyphsToPackedGlyphs): Store the glyph

View file

@ -180,7 +180,7 @@ typedef struct _PathElement
[path moveToPoint: aPoint];
[path appendBezierPathWithPackedGlyphs: packedGlyphs];
[path stroke];
[path fill];
RELEASE(path);
}