mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-06-19 17:43:23 +08:00
Merge pull request #1718 from levi/fixFix
Fix boolean logic that prevents layout
This commit is contained in:
@@ -2377,7 +2377,7 @@ void recursivelyTriggerDisplayForLayer(CALayer *layer, BOOL shouldBlock)
|
||||
{
|
||||
ASDisplayNodeAssertMainThread();
|
||||
|
||||
if (![self _hasDirtyLayout]) {
|
||||
if ([self _hasDirtyLayout]) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user