Skip to content

Commit

Permalink
NativeAnimated - Fix missing update at the end of the batch
Browse files Browse the repository at this point in the history
Summary:
This call got lost in the refactor of #11819 and caused some view updating issues.
Closes #13183

Differential Revision: D4787565

Pulled By: javache

fbshipit-source-id: 8f7d456824c67abee6ac1d5f906e4c831ede889b
  • Loading branch information
janicduplessis authored and facebook-github-bot committed Mar 28, 2017
1 parent 33000c7 commit f46fd36
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Libraries/NativeAnimation/RCTNativeAnimatedModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ - (void)uiManagerWillFlushUIBlocks:(RCTUIManager *)uiManager
for (AnimatedOperation operation in operations) {
operation(self->_nodesManager);
}

[self->_nodesManager updateAnimations];
}];
}

Expand Down

0 comments on commit f46fd36

Please sign in to comment.