summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSteffen Ernst <steffen@Steffens-MacBook-Pro.local>2025-01-14 15:23:47 +0100
committerEmīls <emils@mullvad.net>2025-01-17 12:41:20 +0100
commit07b19772b5438b5fa61a07fae487608c85815869 (patch)
treee94032b41e8128163903974ade2b7594ff014347
parent63ad7f7495a7533ebf74f7065450aa5fcb53e4f2 (diff)
downloadmullvadvpn-07b19772b5438b5fa61a07fae487608c85815869.tar.xz
mullvadvpn-07b19772b5438b5fa61a07fae487608c85815869.zip
Fix text truncation in multihop and daita view with large font
-rw-r--r--ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoView.swift2
1 files changed, 2 insertions, 0 deletions
diff --git a/ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoView.swift b/ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoView.swift
index 3060caf56e..095d5d8ced 100644
--- a/ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoView.swift
+++ b/ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoView.swift
@@ -63,6 +63,8 @@ struct SettingsInfoView: View {
Text(page.body)
.font(.subheadline)
.opacity(0.6)
+ // The following line is needed to not truncate the text when using xxl text size
+ .minimumScaleFactor(0.9)
}
}
}