1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

oops - the last check-in broke some path rendering code.. this fixes it.

This commit is contained in:
Julian Storer 2009-11-10 00:31:53 +00:00
parent fea4fb8575
commit dc83bf01e1
5 changed files with 84 additions and 46 deletions

View file

@ -196,7 +196,11 @@ public:
flip();
applyTransform (transform);
createPath (path);
CGContextFillPath (context);
if (path.isUsingNonZeroWinding())
CGContextFillPath (context);
else
CGContextEOFillPath (context);
}
else
{