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

Commit e5d7d29

Browse files
author
Levi McCallum
committed
Fix boolean logic that prevents layout
1 parent 1b07cab commit e5d7d29

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)