Copy raw description on long tap (fixes #6557)

(cherry picked from commit b47b702a52c0d540dcf937cbfaa86b1bbd3c8532)
This commit is contained in:
arkon 2022-03-09 18:01:28 -05:00 committed by Jobobby04
parent 4a627ea359
commit 0b2dabc7fa

View File

@ -267,10 +267,12 @@ class MangaSummaryView @JvmOverloads constructor(
minLines = DESC_MIN_LINES minLines = DESC_MIN_LINES
setOnLongClickListener { setOnLongClickListener {
description?.let {
context.copyToClipboard( context.copyToClipboard(
context.getString(R.string.description), context.getString(R.string.description),
text.toString() it.toString()
) )
}
true true
} }
} }