Fix ARTSurfaceView with Nodes

Summary: ARTSurfaceView wasn't working for Nodes. This patch fixes it.

Differential Revision: D3653522
This commit is contained in:
Ahmed El-Helw
2016-08-02 13:43:15 -07:00
parent 28654aef65
commit 7cc4e0364a
4 changed files with 155 additions and 0 deletions

View File

@@ -226,6 +226,13 @@ import com.facebook.react.views.view.ReactClippingViewGroupHelper;
}
}
@Override
protected void markUpdated() {
super.markUpdated();
mIsUpdated = true;
invalidate();
}
/* package */ final boolean isUpdated() {
return mIsUpdated;
}