Set hasNewLayout on children when changing their layout due to display none parent

Reviewed By: astreet

Differential Revision: D4786615

fbshipit-source-id: 2f3a16661d37bc37939e8e7a551445886a06524e
This commit is contained in:
Emil Sjolander 2017-03-28 12:37:49 -07:00 committed by Facebook Github Bot
parent 1129c6096d
commit 4bf2d8cb7d
1 changed files with 1 additions and 0 deletions

View File

@ -1811,6 +1811,7 @@ static void YGZeroOutLayoutRecursivly(const YGNodeRef node) {
node->layout.cachedLayout.widthMeasureMode = YGMeasureModeExactly;
node->layout.cachedLayout.computedWidth = 0;
node->layout.cachedLayout.computedHeight = 0;
node->hasNewLayout = true;
const uint32_t childCount = YGNodeGetChildCount(node);
for (uint32_t i = 0; i < childCount; i++) {
const YGNodeRef child = YGNodeListGet(node->children, i);