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
setOnLongClickListener {
context.copyToClipboard(
context.getString(R.string.description),
text.toString()
)
description?.let {
context.copyToClipboard(
context.getString(R.string.description),
it.toString()
)
}
true
}
}