mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
Merge pull request #8517 from vector-im/dla/feature/rte_paste_images
Update rich text editor library to support pasting of images
This commit is contained in:
commit
7d084f18a0
3 changed files with 3 additions and 2 deletions
1
changelog.d/8270.bugfix
Normal file
1
changelog.d/8270.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Update rich text editor library to support pasting of images.
|
|
@ -101,7 +101,7 @@ ext.libs = [
|
|||
],
|
||||
element : [
|
||||
'opusencoder' : "io.element.android:opusencoder:1.1.0",
|
||||
'wysiwyg' : "io.element.android:wysiwyg:2.2.1"
|
||||
'wysiwyg' : "io.element.android:wysiwyg:2.2.2"
|
||||
],
|
||||
squareup : [
|
||||
'moshi' : "com.squareup.moshi:moshi:$moshi",
|
||||
|
|
|
@ -88,7 +88,7 @@ internal class RichTextComposerLayout @JvmOverloads constructor(
|
|||
override val text: Editable?
|
||||
get() = editText.text
|
||||
override val formattedText: String?
|
||||
get() = (editText as? EditorEditText)?.getHtmlOutput()
|
||||
get() = (editText as? EditorEditText)?.getContentAsMessageHtml()
|
||||
override val editText: EditText
|
||||
get() = if (isTextFormattingEnabled) {
|
||||
views.richTextComposerEditText
|
||||
|
|
Loading…
Reference in a new issue