diff --git a/clients/apple/Sources/PunktfunkClient/Settings/SettingsView+Sections.swift b/clients/apple/Sources/PunktfunkClient/Settings/SettingsView+Sections.swift index 875e72de..8c313e4a 100644 --- a/clients/apple/Sources/PunktfunkClient/Settings/SettingsView+Sections.swift +++ b/clients/apple/Sources/PunktfunkClient/Settings/SettingsView+Sections.swift @@ -79,9 +79,10 @@ extension SettingsView { .pickerStyle(.wheel) .frame(maxHeight: 140) Text("The host drives a real output at exactly this mode — true pixels, no scaling.") - .font(.geist(12, relativeTo: .caption)) + .font(.geist(13, relativeTo: .footnote)) .foregroundStyle(.secondary) .fixedSize(horizontal: false, vertical: true) + .frame(maxWidth: 360, alignment: .leading) // match the described-row caption cap } } diff --git a/clients/apple/Sources/PunktfunkClient/Settings/SettingsView+Support.swift b/clients/apple/Sources/PunktfunkClient/Settings/SettingsView+Support.swift index d391e3a5..dab339d2 100644 --- a/clients/apple/Sources/PunktfunkClient/Settings/SettingsView+Support.swift +++ b/clients/apple/Sources/PunktfunkClient/Settings/SettingsView+Support.swift @@ -23,9 +23,13 @@ extension SettingsView { VStack(alignment: .leading, spacing: 5) { content() Text(caption) - .font(.geist(12, relativeTo: .caption)) + .font(.geist(13, relativeTo: .footnote)) .foregroundStyle(.secondary) .fixedSize(horizontal: false, vertical: true) // wrap, never truncate, in Form cells + // Cap the caption's line length well short of the cell: a full-width caption runs + // its text right up to the control column (toggles especially), reading as one + // colliding block. ~46 chars/line also just measures better. + .frame(maxWidth: 360, alignment: .leading) } .padding(.vertical, 2) }