summaryrefslogtreecommitdiff
path: root/TalerWallet1/Views/HelperViews/CopyShare.swift
diff options
context:
space:
mode:
Diffstat (limited to 'TalerWallet1/Views/HelperViews/CopyShare.swift')
-rw-r--r--TalerWallet1/Views/HelperViews/CopyShare.swift3
1 files changed, 3 insertions, 0 deletions
diff --git a/TalerWallet1/Views/HelperViews/CopyShare.swift b/TalerWallet1/Views/HelperViews/CopyShare.swift
index c3825fd..078244a 100644
--- a/TalerWallet1/Views/HelperViews/CopyShare.swift
+++ b/TalerWallet1/Views/HelperViews/CopyShare.swift
@@ -23,11 +23,13 @@ struct CopyButton: View {
if vertical {
VStack {
Image(systemName: "doc.on.doc")
+ .accessibility(hidden: true)
Text("Copy", comment: "5 letters max, else abbreviate")
}
} else {
HStack {
Image(systemName: "doc.on.doc")
+ .accessibility(hidden: true)
Text("Copy", comment: "may be a bit longer")
}
}
@@ -53,6 +55,7 @@ struct ShareButton: View {
Button(action: shareAction) {
HStack {
Image(systemName: "square.and.arrow.up")
+ .accessibility(hidden: true)
Text("Share")
}
}