From 5a42bf0ffb2ae609d1ae84e326f1b4fc339660b6 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 25 Apr 2018 13:06:25 -0400 Subject: [PATCH] Fix dynamic type issues in home view cells. --- Signal/src/ViewControllers/HomeView/HomeViewCell.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/HomeView/HomeViewCell.m b/Signal/src/ViewControllers/HomeView/HomeViewCell.m index 6e04ed7be..c2c5ad36f 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewCell.m +++ b/Signal/src/ViewControllers/HomeView/HomeViewCell.m @@ -62,7 +62,7 @@ NS_ASSUME_NONNULL_BEGIN [self setTranslatesAutoresizingMaskIntoConstraints:NO]; self.layoutMargins = UIEdgeInsetsMake(0, self.cellHMargin, 0, self.cellHMargin); self.contentView.layoutMargins = UIEdgeInsetsZero; - self.contentView.preservesSuperviewLayoutMargins = YES; + self.contentView.preservesSuperviewLayoutMargins = NO; self.backgroundColor = [UIColor whiteColor];