shouldUpdate -> hasNewLayout

Summary: This moves the api in line with the java api. hasNewLayout makes for sense than shouldUpdate because the API is not telling css layout to update but is instead just a marker for the user of the API to know if there has been a new layout since last time it checked.

Reviewed By: majak

Differential Revision: D3613695

fbshipit-source-id: 4e16e8d4de90660a09d6e1d3a43c6c5e89349993
This commit is contained in:
Emil Sjolander
2016-08-01 05:24:18 -07:00
committed by Facebook Github Bot 3
parent 5207b90420
commit a0805d0b90
3 changed files with 5 additions and 5 deletions

View File

@@ -87,7 +87,7 @@ typedef struct CSSNode {
CSSStyle style;
CSSLayout layout;
int lineIndex;
bool shouldUpdate;
bool hasNewLayout;
bool isTextNode;
CSSNodeRef parent;
CSSNodeListRef children;