taler-ios

iOS apps for GNU Taler (wallet)
Log | Files | Refs | README | LICENSE

commit c735cef0725981f1bae6274a072f0e555377e714
parent 84bca0d96683014666b7049b7faf07d33cce2ddf
Author: Marc Stibane <marc@taler.net>
Date:   Mon, 14 Oct 2024 23:04:27 +0200

a11y

Diffstat:
MTalerWallet1/Views/HelperViews/CurrencyField.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/TalerWallet1/Views/HelperViews/CurrencyField.swift b/TalerWallet1/Views/HelperViews/CurrencyField.swift @@ -69,13 +69,13 @@ struct CurrencyField: View { .frame(maxWidth: .infinity, alignment: .trailing) .padding(4) text + .accessibilityHidden(true) .background(WalletColors().fieldBackground) .cornerRadius(10) .overlay(RoundedRectangle(cornerRadius: 10) .stroke(WalletColors().fieldForeground, lineWidth: 1)) // Input text field to handle UI currencyFieldRepresentable -// .accessibilityHidden(true) } } }