pull/376/head
Niels Andriesse 4 years ago
parent 650cba8cdd
commit ef47e9bbf9

@ -191,11 +191,6 @@ final class QuoteView : UIView {
bodyLabel.attributedText = given(body) { MentionUtilities.highlightMentions(in: $0, isOutgoingMessage: isOutgoing, threadID: threadID, attributes: [:]) }
?? given(attachments.first?.contentType) { NSAttributedString(string: MIMETypeUtil.isAudio($0) ? "Audio" : "Document") } ?? NSAttributedString(string: "Document")
bodyLabel.textColor = textColor
/*
if hasAttachments {
bodyLabel.numberOfLines = 1
}
*/
let bodyLabelSize = bodyLabel.systemLayoutSizeFitting(availableSpace)
// Label stack view
var authorLabelHeight: CGFloat?

@ -561,7 +561,7 @@ final class VisibleMessageCell : MessageCell, LinkPreviewViewDelegate {
switch viewItem.interaction.interactionType() {
case .outgoingMessage: return screen.width - contactThreadHSpacing - gutterSize
case .incomingMessage:
let isGroupThread = viewItem.interaction.thread.isGroupThread()
let isGroupThread = viewItem.isGroupThread
let leftGutterSize = isGroupThread ? gutterSize : contactThreadHSpacing
return screen.width - leftGutterSize - gutterSize
default: preconditionFailure()

Loading…
Cancel
Save