Fix a typo in Group::DrawFilledPaths.

This commit is contained in:
whitequark 2016-07-31 10:34:18 +00:00
parent 50b2b8adfd
commit d0e32849b2

View File

@ -624,7 +624,7 @@ void Group::DrawFilledPaths(Canvas *canvas) {
fill.zIndex = 1; fill.zIndex = 1;
if(s->filled) { if(s->filled) {
// This is a filled loop, where the user specified a fill color. // This is a filled loop, where the user specified a fill color.
fill.color = s->color; fill.color = s->fillColor;
} else if(h.v == SS.GW.activeGroup.v && SS.checkClosedContour && } else if(h.v == SS.GW.activeGroup.v && SS.checkClosedContour &&
polyError.how == PolyError::GOOD) { polyError.how == PolyError::GOOD) {
// If this is the active group, and we are supposed to check // If this is the active group, and we are supposed to check