From 6bf150bc65e9753e4fcfc367bf9cbe7207d42406 Mon Sep 17 00:00:00 2001 From: Michael Schneider Date: Wed, 24 Feb 2016 20:18:52 -0800 Subject: [PATCH] Add missing super call --- examples/CustomCollectionView/Sample/ImageCellNode.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/CustomCollectionView/Sample/ImageCellNode.m b/examples/CustomCollectionView/Sample/ImageCellNode.m index 3bb74a14..02064168 100644 --- a/examples/CustomCollectionView/Sample/ImageCellNode.m +++ b/examples/CustomCollectionView/Sample/ImageCellNode.m @@ -31,6 +31,8 @@ - (void)layout { + [super layout]; + _imageNode.frame = CGRectMake(0, 0, _imageNode.calculatedSize.width, _imageNode.calculatedSize.height); }