Skip to content

Commit

Permalink
fix(ios): animation of clipPath contents, fixes #1119
Browse files Browse the repository at this point in the history
  • Loading branch information
msand committed Sep 27, 2019
1 parent bd7e492 commit 8bb5b22
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ios/Elements/RNSVGGroup.m
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ - (CGPathRef)getPath:(CGContextRef)context
if ([node isKindOfClass:[RNSVGNode class]] && ![node isKindOfClass:[RNSVGMask class]]) {
CGAffineTransform transform = CGAffineTransformConcat(node.matrix, node.transforms);
CGPathAddPath(path, &transform, [node getPath:context]);
node.dirty = false;
}
return YES;
}];
Expand Down

0 comments on commit 8bb5b22

Please sign in to comment.