| Index: sky/engine/core/rendering/style/RenderStyle.cpp
|
| diff --git a/sky/engine/core/rendering/style/RenderStyle.cpp b/sky/engine/core/rendering/style/RenderStyle.cpp
|
| index d1e7d28e9a43c83f88cb906cecd407d3c8413ff6..bf63c6e042d89ac8189781854c886687bb4979ce 100644
|
| --- a/sky/engine/core/rendering/style/RenderStyle.cpp
|
| +++ b/sky/engine/core/rendering/style/RenderStyle.cpp
|
| @@ -150,7 +150,6 @@ StyleRecalcChange RenderStyle::stylePropagationDiff(const RenderStyle* oldStyle,
|
|
|
| if (oldStyle->display() != newStyle->display()
|
| || !oldStyle->contentDataEquivalent(newStyle)
|
| - || oldStyle->hasTextCombine() != newStyle->hasTextCombine()
|
| || oldStyle->justifyItems() != newStyle->justifyItems()
|
| || oldStyle->alignItems() != newStyle->alignItems())
|
| return Reattach;
|
| @@ -341,7 +340,6 @@ bool RenderStyle::diffNeedsFullLayoutAndPaintInvalidation(const RenderStyle& oth
|
| || rareNonInheritedData->m_justifyContent != other.rareNonInheritedData->m_justifyContent
|
| || rareNonInheritedData->m_grid.get() != other.rareNonInheritedData->m_grid.get()
|
| || rareNonInheritedData->m_gridItem.get() != other.rareNonInheritedData->m_gridItem.get()
|
| - || rareNonInheritedData->m_textCombine != other.rareNonInheritedData->m_textCombine
|
| || rareNonInheritedData->hasFilters() != other.rareNonInheritedData->hasFilters())
|
| return true;
|
|
|
|
|