diff options
| author | Steffen Ernst <steffen@Steffens-MacBook-Pro.local> | 2025-01-14 15:23:47 +0100 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2025-01-17 12:41:20 +0100 |
| commit | 07b19772b5438b5fa61a07fae487608c85815869 (patch) | |
| tree | e94032b41e8128163903974ade2b7594ff014347 | |
| parent | 63ad7f7495a7533ebf74f7065450aa5fcb53e4f2 (diff) | |
| download | mullvadvpn-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.swift | 2 |
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) } } } |
