Skip to content

Commit

Permalink
Reset the hadOverflow flag at the beginning of the algorithm
Browse files Browse the repository at this point in the history
Summary:
This fixes the case where we change the layout, so that it doesn't overflow anymore.

This also improves the readability by using `|=` instead of referencing the value twice.
Closes facebook/yoga#587

Differential Revision: D5388657

Pulled By: emilsjolander

fbshipit-source-id: ce1b1ded1feed7314a2c16bf695f62b866c19ea0
  • Loading branch information
woehrl01 authored and facebook-github-bot committed Jul 10, 2017
1 parent dec62ff commit 5da0a99
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ReactCommon/yoga/yoga/Yoga.c
Original file line number Diff line number Diff line change
Expand Up @@ -2041,6 +2041,9 @@ static void YGNodelayoutImpl(const YGNodeRef node,
return;
}

// Reset layout flags, as they could have changed.
node->layout.hadOverflow = false;

// STEP 1: CALCULATE VALUES FOR REMAINDER OF ALGORITHM
const YGFlexDirection mainAxis = YGResolveFlexDirection(node->style.flexDirection, direction);
const YGFlexDirection crossAxis = YGFlexDirectionCross(mainAxis, direction);
Expand Down Expand Up @@ -2577,14 +2580,14 @@ static void YGNodelayoutImpl(const YGNodeRef node,
performLayout && !requiresStretchLayout,
"flex",
config);
node->layout.hadOverflow = node->layout.hadOverflow || currentRelativeChild->layout.hadOverflow;
node->layout.hadOverflow |= currentRelativeChild->layout.hadOverflow;

currentRelativeChild = currentRelativeChild->nextChild;
}
}

remainingFreeSpace = originalRemainingFreeSpace + deltaFreeSpace;
node->layout.hadOverflow = node->layout.hadOverflow || (remainingFreeSpace < 0);
node->layout.hadOverflow |= (remainingFreeSpace < 0);

// STEP 6: MAIN-AXIS JUSTIFICATION & CROSS-AXIS SIZE DETERMINATION

Expand Down

0 comments on commit 5da0a99

Please sign in to comment.