fix ClipPath bug

This commit is contained in:
Horcrux
2016-05-18 17:54:52 +08:00
parent ce74efc58d
commit c9e4e3aead
@@ -65,7 +65,7 @@ public class RNSVGGroupShadowNode extends RNSVGVirtualNode {
public int hitTest(Point point, View view) {
// TODO: run hit test only if necessary
// TODO: ClipPath never run hitTest
if (mClipPathId == null) {
if (mAsClipPath != null) {
return -1;
}