diff --git a/ShhShell/Host/HostsManager.swift b/ShhShell/Host/HostsManager.swift index 194954c..b5324e1 100644 --- a/ShhShell/Host/HostsManager.swift +++ b/ShhShell/Host/HostsManager.swift @@ -19,7 +19,7 @@ class HostsManager: ObservableObject, @unchecked Sendable { @Published var selectedAnsi: Int = 1 @Published var fonts: [UIFont] = [] - @Published var selectedFont: String = "Menlo" + @Published var selectedFont: String = "SF Mono" var tint: SwiftUI.Color { selectedTheme.ansi[selectedAnsi].suiColor diff --git a/ShhShell/Views/Fonts/FontManagerView.swift b/ShhShell/Views/Fonts/FontManagerView.swift index 18b9333..8ca6d9c 100644 --- a/ShhShell/Views/Fonts/FontManagerView.swift +++ b/ShhShell/Views/Fonts/FontManagerView.swift @@ -29,7 +29,7 @@ struct FontManagerView: View { .foregroundStyle(.green) .animation(.spring, value: selected) .transition(.scale) - Text("the lazy bronw fox jumps over the lazy dog") + Text(testLine) .font(.custom(fontName, size: 15)) .bold(selected) .opacity(selected ? 1 : 0.8)