Merged caused some odd issues

pull/1061/head
Morgan Pretty 3 days ago
parent 2800a11cf3
commit a8acab4b86

@ -515,18 +515,6 @@ struct MessageBubble: View {
} }
else { else {
switch messageViewModel.cellType { switch messageViewModel.cellType {
case .mediaMessage:
if let bodyText: NSAttributedString = VisibleMessageCell.getBodyAttributedText(
for: messageViewModel,
theme: ThemeManager.currentTheme,
primaryColor: ThemeManager.primaryColor,
textColor: bodyLabelTextColor,
searchText: nil,
using: dependencies
) {
AttributedText(bodyText)
.padding(.all, Self.inset)
}
case .voiceMessage: case .voiceMessage:
if let attachment: Attachment = messageViewModel.attachments?.first(where: { $0.isAudio }){ if let attachment: Attachment = messageViewModel.attachments?.first(where: { $0.isAudio }){
// TODO: Playback Info and check if playing function is needed // TODO: Playback Info and check if playing function is needed
@ -534,10 +522,6 @@ struct MessageBubble: View {
} }
case .audio, .genericAttachment: case .audio, .genericAttachment:
if let attachment: Attachment = messageViewModel.attachments?.first { if let attachment: Attachment = messageViewModel.attachments?.first {
VStack(
alignment: .leading,
spacing: Values.smallSpacing
) {
DocumentView_SwiftUI( DocumentView_SwiftUI(
maxWidth: $maxWidth, maxWidth: $maxWidth,
attachment: attachment, attachment: attachment,
@ -548,28 +532,6 @@ struct MessageBubble: View {
width: maxWidth, width: maxWidth,
alignment: .leading alignment: .leading
) )
if let bodyText: NSAttributedString = VisibleMessageCell.getBodyAttributedText(
for: messageViewModel,
theme: ThemeManager.currentTheme,
primaryColor: ThemeManager.primaryColor,
textColor: bodyLabelTextColor,
searchText: nil,
using: dependencies
) {
ZStack{
AttributedText(bodyText)
.padding(.horizontal, Self.inset)
.padding(.bottom, Self.inset)
}
.modifier(MaxWidthEqualizer.notify)
.frame(
width: maxWidth,
alignment: .leading
)
}
}
.modifier(MaxWidthEqualizer(width: $maxWidth))
} }
default: EmptyView() default: EmptyView()
} }

Loading…
Cancel
Save