Browse Source

Fix long click on simple formatted messages (#1327)

pull/1328/head
Jorge Martin Espinosa 1 year ago committed by GitHub
parent
commit
754671303a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/1232.bugfix
  2. 7
      features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/html/HtmlDocument.kt

1
changelog.d/1232.bugfix

@ -0,0 +1 @@ @@ -0,0 +1 @@
Fix long click on simple formatted messages

7
features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/html/HtmlDocument.kt

@ -126,7 +126,12 @@ private fun HtmlBody( @@ -126,7 +126,12 @@ private fun HtmlBody(
when (val node = nodes.next()) {
is TextNode -> {
if (!node.isBlank) {
ClickableLinkText(text = node.text(), interactionSource = interactionSource)
ClickableLinkText(
text = node.text(),
interactionSource = interactionSource,
onClick = onTextClicked,
onLongClick = onTextLongClicked,
)
}
}
is Element -> {

Loading…
Cancel
Save