mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 17:35:46 +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
ee22a87867
commit
546bb43a3c
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…
Add table
Add a link
Reference in a new issue