mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-24 13:48:55 +03:00
Copy raw description on long tap (fixes #6557)
This commit is contained in:
parent
869424cd16
commit
b47b702a52
1 changed files with 6 additions and 4 deletions
|
@ -169,10 +169,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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue