Fix indentations in ASDisplayNode:layout

This commit is contained in:
Huy Nguyen 2015-10-07 22:16:37 +03:00
parent 243873dc1f
commit 8b7dc916f8

View File

@ -1712,9 +1712,9 @@ void recursivelyEnsureDisplayForLayer(CALayer *layer)
for (ASLayout *subnodeLayout in _layout.sublayouts) {
ASDisplayNodeAssert([_subnodes containsObject:subnodeLayout.layoutableObject], @"Cached sublayouts must only contain subnodes' layout.");
[((ASDisplayNode *)subnodeLayout.layoutableObject) __setSafeFrame:CGRectMake(subnodeLayout.position.x,
subnodeLayout.position.y,
subnodeLayout.size.width,
subnodeLayout.size.height)];
subnodeLayout.position.y,
subnodeLayout.size.width,
subnodeLayout.size.height)];
}
}