diff options
Diffstat (limited to 'wallet/src/main/java')
-rw-r--r-- | wallet/src/main/java/net/taler/wallet/transactions/TransactionAdapter.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wallet/src/main/java/net/taler/wallet/transactions/TransactionAdapter.kt b/wallet/src/main/java/net/taler/wallet/transactions/TransactionAdapter.kt index a72b8a8..440d07f 100644 --- a/wallet/src/main/java/net/taler/wallet/transactions/TransactionAdapter.kt +++ b/wallet/src/main/java/net/taler/wallet/transactions/TransactionAdapter.kt @@ -81,15 +81,15 @@ internal class TransactionAdapter( private val time: TextView = v.findViewById(R.id.time) private val amount: TextView = v.findViewById(R.id.amount) - private val selectableBackground = v.background + private val selectableForeground = v.foreground private val amountColor = amount.currentTextColor open fun bind(transaction: Transaction, selected: Boolean) { if (devMode || transaction.detailPageLayout != 0) { - v.background = selectableBackground + v.foreground = selectableForeground v.setOnClickListener { listener.onTransactionClicked(transaction) } } else { - v.background = null + v.foreground = null v.setOnClickListener(null) } v.isActivated = selected |