ios: fix Speak Screen repeating messages (#2897)
* ios: fix Speak Screen repeating messages * fix * different modifier --------- Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
This commit is contained in:
parent
01a95f88bb
commit
b829bd0c06
@ -67,6 +67,7 @@ struct FramedItemView: View {
|
|||||||
.padding(.horizontal, 12)
|
.padding(.horizontal, 12)
|
||||||
.padding(.bottom, 6)
|
.padding(.bottom, 6)
|
||||||
.overlay(DetermineWidth())
|
.overlay(DetermineWidth())
|
||||||
|
.accessibilityLabel("")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.background(chatItemFrameColorMaybeImageOrVideo(chatItem, colorScheme))
|
.background(chatItemFrameColorMaybeImageOrVideo(chatItem, colorScheme))
|
||||||
|
@ -515,6 +515,7 @@ struct ChatView: View {
|
|||||||
VStack(alignment: alignment.horizontal, spacing: 3) {
|
VStack(alignment: alignment.horizontal, spacing: 3) {
|
||||||
ChatItemView(chatInfo: chat.chatInfo, chatItem: ci, maxWidth: maxWidth, scrollProxy: scrollProxy, revealed: $revealed, allowMenu: $allowMenu, audioPlayer: $audioPlayer, playbackState: $playbackState, playbackTime: $playbackTime)
|
ChatItemView(chatInfo: chat.chatInfo, chatItem: ci, maxWidth: maxWidth, scrollProxy: scrollProxy, revealed: $revealed, allowMenu: $allowMenu, audioPlayer: $audioPlayer, playbackState: $playbackState, playbackTime: $playbackTime)
|
||||||
.uiKitContextMenu(menu: uiMenu, allowMenu: $allowMenu)
|
.uiKitContextMenu(menu: uiMenu, allowMenu: $allowMenu)
|
||||||
|
.accessibilityLabel("")
|
||||||
if ci.content.msgContent != nil && (ci.meta.itemDeleted == nil || revealed) && ci.reactions.count > 0 {
|
if ci.content.msgContent != nil && (ci.meta.itemDeleted == nil || revealed) && ci.reactions.count > 0 {
|
||||||
chatItemReactions()
|
chatItemReactions()
|
||||||
.padding(.bottom, 4)
|
.padding(.bottom, 4)
|
||||||
|
Loading…
Reference in New Issue
Block a user