diff --git a/Signal/src/views/OWSUnreadIndicatorCell.m b/Signal/src/views/OWSUnreadIndicatorCell.m index 24586cced..a98b43f93 100644 --- a/Signal/src/views/OWSUnreadIndicatorCell.m +++ b/Signal/src/views/OWSUnreadIndicatorCell.m @@ -167,7 +167,7 @@ CGSize subtitleSize = [self.subtitleLabel sizeThatFits:CGSizeMake( self.contentView.width - [OWSUnreadIndicatorCell subtitleHMargin] * 2.f, CGFLOAT_MAX)]; - self.subtitleLabel.frame = CGRectMake(round((self.titleLabel.superview.width - subtitleSize.width) * 0.5f), + self.subtitleLabel.frame = CGRectMake(round((self.contentView.width - subtitleSize.width) * 0.5f), round(self.titleBackgroundView.bottom + OWSUnreadIndicatorCell.subtitleVSpacing), ceil(subtitleSize.width), ceil(subtitleSize.height));