Browse Source
Merge pull request #12843 from t895/system-driver-whoops
android: Don't show delete button for system driver
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
5 deletions
-
src/android/app/src/main/java/org/yuzu/yuzu_emu/adapters/DriverAdapter.kt
|
|
|
@ -7,6 +7,7 @@ import android.text.TextUtils |
|
|
|
import android.view.LayoutInflater |
|
|
|
import android.view.View |
|
|
|
import android.view.ViewGroup |
|
|
|
import org.yuzu.yuzu_emu.R |
|
|
|
import org.yuzu.yuzu_emu.databinding.CardDriverOptionBinding |
|
|
|
import org.yuzu.yuzu_emu.features.settings.model.StringSetting |
|
|
|
import org.yuzu.yuzu_emu.model.Driver |
|
|
|
@ -57,13 +58,9 @@ class DriverAdapter(private val driverViewModel: DriverViewModel) : |
|
|
|
title.text = model.title |
|
|
|
version.text = model.version |
|
|
|
description.text = model.description |
|
|
|
if (model.description.isNotEmpty()) { |
|
|
|
version.visibility = View.VISIBLE |
|
|
|
description.visibility = View.VISIBLE |
|
|
|
if (model.title != binding.root.context.getString(R.string.system_gpu_driver)) { |
|
|
|
buttonDelete.visibility = View.VISIBLE |
|
|
|
} else { |
|
|
|
version.visibility = View.GONE |
|
|
|
description.visibility = View.GONE |
|
|
|
buttonDelete.visibility = View.GONE |
|
|
|
} |
|
|
|
} |
|
|
|
|