Fix boolean logic that prevents layout

This commit is contained in:
Levi McCallum
2016-06-06 13:57:17 -07:00
parent 1b07cab87b
commit e5d7d29eb6

View File

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