mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 06:49:58 +00:00
android: Fix button click listener for build version name
Was set to the text instead of the parent view by mistake
This commit is contained in:
parent
91636deaaf
commit
b24a111136
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ class AboutFragment : Fragment() {
|
|||
}
|
||||
|
||||
binding.textVersionName.text = BuildConfig.VERSION_NAME
|
||||
binding.textVersionName.setOnClickListener {
|
||||
binding.buttonVersionName.setOnClickListener {
|
||||
val clipBoard =
|
||||
requireContext().getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
|
||||
val clip = ClipData.newPlainText(getString(R.string.build), BuildConfig.GIT_HASH)
|
||||
|
|
Loading…
Reference in a new issue