Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit e0abb70

Browse files
committed
Merge pull request #1718 from levi/fixFix
Fix boolean logic that prevents layout
2 parents 1b07cab + e5d7d29 commit e0abb70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AsyncDisplayKit/ASDisplayNode.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2377,7 +2377,7 @@ - (void)layout
23772377
{
23782378
ASDisplayNodeAssertMainThread();
23792379

2380-
if (![self _hasDirtyLayout]) {
2380+
if ([self _hasDirtyLayout]) {
23812381
return;
23822382
}
23832383

0 commit comments

Comments
 (0)