Add removed super.dispatchDraw call in FlatViewGroup.

Summary: Accidentally pulled this when fixing comment positioning.  Re-adding now.

Reviewed By: ahmedre

Differential Revision: D3547553
This commit is contained in:
Seth Kirby 2016-07-12 11:41:50 -07:00 committed by Ahmed El-Helw
parent b300c1979c
commit 6cc6cd4d44

View File

@ -164,6 +164,8 @@ import com.facebook.react.views.view.ReactClippingViewGroupHelper;
@Override
public void dispatchDraw(Canvas canvas) {
super.dispatchDraw(canvas);
if (mRemoveClippedSubviews) {
for (DrawCommand drawCommand : mDrawCommands) {
if (drawCommand instanceof DrawView) {