Merge pull request #885 from Aga-C/remove-redundant-toast

Removed redundant toast on copying to clipboard
This commit is contained in:
Tibor Kaputa 2022-09-22 12:13:45 +02:00 committed by GitHub
commit fb4d702a73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -858,7 +858,6 @@ class ViewContactActivity : ContactActivity() {
private fun View.copyOnLongClick(value: String) {
setOnLongClickListener {
copyToClipboard(value)
toast(R.string.value_copied_to_clipboard)
true
}
}