commit 070f753c28a4e38ae73ed9f4eab9fc46ddaa09b0
parent 2dc8a87b0c049ac3b11807c099bd167206d0cbd0
Author: Marc Stibane <marc@taler.net>
Date: Sat, 4 Jul 2026 19:12:14 +0200
bottomColor
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/TalerWallet1/Views/Transactions/ThreeAmountsSection.swift b/TalerWallet1/Views/Transactions/ThreeAmountsSection.swift
@@ -169,8 +169,8 @@ struct ThreeAmountsSection: View {
var body: some View {
let currency = currencyInfo.currency
let labelColor = WalletColors().labelColor
- let foreColor = pendingDialog ? WalletColors().pendingColor(incoming)
- : WalletColors().transactionColor(incoming)
+ let bottomColor = pendingDialog ? WalletColors().pendingColor(incoming)
+ : WalletColors().transactionColor(incoming)
let hasNoFees = noFees ?? false
productImageSections
Section {
@@ -215,7 +215,7 @@ struct ThreeAmountsSection: View {
amount: bottomAmount,
scope: scope,
isNegative: nil,
- color: foreColor,
+ color: bottomColor,
large: large)
}
}