Merge "Fix RNA crash" into nyc-mr1-dev

This commit is contained in:
TreeHugger Robot
2016-08-03 18:57:25 +00:00
committed by Android (Google) Code Review

View File

@@ -83,8 +83,11 @@ void AnimatorManager::pushStaging() {
}
mNewAnimators.clear();
}
for (auto& animator : mAnimators) {
animator->pushStaging(mAnimationHandle->context());
if (mAnimators.size()) {
for (auto& animator : mAnimators) {
animator->pushStaging(mAnimationHandle->context());
}
mParent.mProperties.updateMatrix();
}
}