rectify copy to clipboard feat

This commit is contained in:
MrSluffy
2024-12-05 07:51:10 +08:00
parent 8a42a19f3e
commit de03345624

View File

@@ -130,7 +130,7 @@ class SearchResultIconRow(context: Context, attrs: AttributeSet?) :
setOnClickListener {
copyToClipboard(
context = context,
text = target.extras.getString("result"),
text = target.extras.getString("result").toString(),
toastMessage = context.getString(R.string.calculator_search_result_copied_toast),
)
}