Merge pull request #1718 from levi/fixFix

Fix boolean logic that prevents layout
This commit is contained in:
appleguy
2016-06-06 14:00:36 -07:00

View File

@@ -2377,7 +2377,7 @@ void recursivelyTriggerDisplayForLayer(CALayer *layer, BOOL shouldBlock)
{
ASDisplayNodeAssertMainThread();
if (![self _hasDirtyLayout]) {
if ([self _hasDirtyLayout]) {
return;
}