We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 692aefd commit f13f173Copy full SHA for f13f173
1 file changed
app/src/main/java/com/wstxda/switchai/ui/viewholder/AssistantSelectorItemViewHolder.kt
@@ -30,12 +30,14 @@ class AssistantSelectorItemViewHolder(
30
31
if (item.isInstalled) {
32
binding.pinButton.visibility = View.VISIBLE
33
+ itemView.alpha = 1f
34
binding.pinButton.setOnClickListener {
35
onPinClicked(item.key)
36
it.context.buttonVibration()
37
}
38
} else {
39
binding.pinButton.visibility = View.GONE
40
+ itemView.alpha = 0.6f
41
42
43
itemView.setOnClickListener {
0 commit comments