From 45f034565bc86a12404b3bf44eb78d42ad44ca84 Mon Sep 17 00:00:00 2001 From: Gareth Redman Date: Fri, 15 Jul 2022 10:15:48 +1200 Subject: [PATCH] Use monospaced digit font for download progress --- Xcodes/Frontend/Common/ObservingProgressIndicator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xcodes/Frontend/Common/ObservingProgressIndicator.swift b/Xcodes/Frontend/Common/ObservingProgressIndicator.swift index 3b2e5c8..a677486 100644 --- a/Xcodes/Frontend/Common/ObservingProgressIndicator.swift +++ b/Xcodes/Frontend/Common/ObservingProgressIndicator.swift @@ -50,7 +50,7 @@ public struct ObservingProgressIndicator: View { if showsAdditionalDescription, progress.progress.xcodesLocalizedDescription.isEmpty == false { Text(progress.progress.xcodesLocalizedDescription) - .font(.subheadline) + .font(.subheadline.monospacedDigit()) .foregroundColor(.secondary) } }