commit 2c61b55dbe0d8775afdb9c3e101c6c4d7a36c0dc
parent 7a069e5dd82573a4f9803f49ba3ab3101c3a789f
Author: Marc Stibane <marc@taler.net>
Date: Sun, 10 Sep 2023 11:25:20 +0200
DebugView static font size
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/TalerWallet1/Controllers/DebugViewC.swift b/TalerWallet1/Controllers/DebugViewC.swift
@@ -124,8 +124,8 @@ struct DebugViewV: View {
Spacer()
}
Text(viewIDString)
- .font(.caption2)
.foregroundColor(.red)
+ .font(.system(size: 11)) // no accessibilityFont
.monospacedDigit()
Spacer()
}
diff --git a/TalerWallet1/Views/Sheets/Sheet.swift b/TalerWallet1/Views/Sheets/Sheet.swift
@@ -37,8 +37,8 @@ struct Sheet: View {
.overlay(alignment: .top) {
// Show the viewID on top of the sheet's NavigationView
Text(idString)
- .font(.talerCaption2)
.foregroundColor(.purple)
+ .font(.system(size: 11)) // no accessibilityFont
.monospacedDigit()
.edgesIgnoringSafeArea(.top)
.id("sheetID")