Fix quoted reply image aspect ratio.

This commit is contained in:
Matthew Chen 2019-01-25 17:06:05 -05:00
parent 75e017b2c1
commit 5830c62403

View file

@ -219,6 +219,8 @@ const CGFloat kRemotelySourcedContentRowSpacing = 3;
vStackView.layoutMargins = UIEdgeInsetsMake(self.textVMargin, 0, self.textVMargin, 0);
vStackView.layoutMarginsRelativeArrangement = YES;
vStackView.spacing = self.vSpacing;
[vStackView setContentHuggingHorizontalLow];
[vStackView setCompressionResistanceHorizontalLow];
[hStackView addArrangedSubview:vStackView];
UILabel *quotedAuthorLabel = [self configureQuotedAuthorLabel];
@ -280,7 +282,7 @@ const CGFloat kRemotelySourcedContentRowSpacing = 3;
quotedAttachmentView = wrapper;
}
[quotedAttachmentView autoSetDimension:ALDimensionWidth toSize:self.quotedAttachmentSize];
[quotedAttachmentView autoPinToSquareAspectRatio];
[quotedAttachmentView setContentHuggingHigh];
[quotedAttachmentView setCompressionResistanceHigh];
[hStackView addArrangedSubview:quotedAttachmentView];