mirror of
https://github.com/status-im/react-native.git
synced 2025-02-26 08:05:34 +00:00
Fix for failing screenshot tests
Reviewed By: emilsjolander Differential Revision: D6726745 fbshipit-source-id: 99f91aabe2337b23953724545f97695238f2124e
This commit is contained in:
parent
fc6dd78935
commit
ee5c91c031
@ -1553,9 +1553,6 @@ static void YGNodeComputeFlexBasisForChildren(
|
||||
child->setDirty(false);
|
||||
continue;
|
||||
}
|
||||
if (child->getStyle().positionType == YGPositionTypeAbsolute) {
|
||||
continue;
|
||||
}
|
||||
if (performLayout) {
|
||||
// Set the initial position (relative to the parent).
|
||||
const YGDirection childDirection = child->resolveDirection(direction);
|
||||
@ -1568,6 +1565,10 @@ static void YGNodeComputeFlexBasisForChildren(
|
||||
child->setPosition(
|
||||
childDirection, mainDim, crossDim, availableInnerWidth);
|
||||
}
|
||||
|
||||
if (child->getStyle().positionType == YGPositionTypeAbsolute) {
|
||||
continue;
|
||||
}
|
||||
if (child == singleFlexChild) {
|
||||
child->setLayoutComputedFlexBasisGeneration(gCurrentGenerationCount);
|
||||
child->setLayoutComputedFlexBasis(0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user