summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Stibane <marc@taler.net>2023-07-19 12:23:16 +0200
committerMarc Stibane <marc@taler.net>2023-07-19 12:23:16 +0200
commit8a126ae2156ef416a42075ff2bf712c221fa4e2a (patch)
tree5235300882d9f0e31a071ef6d2c82a3329090d06
parentd9dde4b18c29dc8fa622d5397b509a7c40a6bb88 (diff)
downloadtaler-ios-8a126ae2156ef416a42075ff2bf712c221fa4e2a.tar.gz
taler-ios-8a126ae2156ef416a42075ff2bf712c221fa4e2a.tar.bz2
taler-ios-8a126ae2156ef416a42075ff2bf712c221fa4e2a.zip
PayTo URL listRowSeparator
-rw-r--r--TalerWallet1/Views/Transactions/ManualDetails.swift8
1 files changed, 6 insertions, 2 deletions
diff --git a/TalerWallet1/Views/Transactions/ManualDetails.swift b/TalerWallet1/Views/Transactions/ManualDetails.swift
index aa966d9..e1983de 100644
--- a/TalerWallet1/Views/Transactions/ManualDetails.swift
+++ b/TalerWallet1/Views/Transactions/ManualDetails.swift
@@ -47,9 +47,13 @@ struct ManualDetails: View {
.disabled(false)
Spacer()
} .listRowSeparator(.hidden)
- Text(verbatim: "PayTo URL") // the only reason for this leading-aligned text is to get a nice full lenght listRowSeparator
+ Text(verbatim: "PayTo URL") // only reason for this leading-aligned text is to get a nice full length listRowSeparator
.font(.footnote)
- .foregroundColor(Color.yellow) // clear
+#if DEBUG
+ .foregroundColor(Color.yellow)
+#else
+ .foregroundColor(Color.clear)
+#endif
.padding(.vertical, -8)
.listRowSeparator(.automatic)
.accessibilityHidden(true)