C++ Style enums 12/N: PositionType (#1399)
Summary: X-link: https://github.com/facebook/react-native/pull/39538 Pull Request resolved: https://github.com/facebook/yoga/pull/1399 Moves internal usages of YGPositionType to PositionType bypass-github-export-checks Changelog: [Internal] Reviewed By: rshest Differential Revision: D49361677 fbshipit-source-id: 526222d6cf9f3dc26eddfbfb8a04de4ba28e14a9
This commit is contained in:
committed by
Facebook GitHub Bot
parent
5bf81b1ef8
commit
4ea6b4c4f9
@@ -38,7 +38,7 @@ float calculateBaseline(const yoga::Node* node) {
|
||||
if (child->getLineIndex() > 0) {
|
||||
break;
|
||||
}
|
||||
if (child->getStyle().positionType() == YGPositionTypeAbsolute) {
|
||||
if (child->getStyle().positionType() == PositionType::Absolute) {
|
||||
continue;
|
||||
}
|
||||
if (resolveChildAlignment(node, child) == Align::Baseline ||
|
||||
@@ -70,7 +70,7 @@ bool isBaselineLayout(const yoga::Node* node) {
|
||||
const auto childCount = node->getChildCount();
|
||||
for (size_t i = 0; i < childCount; i++) {
|
||||
auto child = node->getChild(i);
|
||||
if (child->getStyle().positionType() != YGPositionTypeAbsolute &&
|
||||
if (child->getStyle().positionType() != PositionType::Absolute &&
|
||||
child->getStyle().alignSelf() == Align::Baseline) {
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user