From 7cb52f71e605a1124aa950afb9743cef996d3027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20F=2E=20Pati=C3=B1o=20Rojas?= Date: Fri, 13 Oct 2023 11:20:37 +0200 Subject: [PATCH] FIX - Wrong base sizes for presets 5, 9 and 10 --- Sources/MisticaCommon/Fonts/FontStyle.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/MisticaCommon/Fonts/FontStyle.swift b/Sources/MisticaCommon/Fonts/FontStyle.swift index 1be73cb1..bad81f2b 100644 --- a/Sources/MisticaCommon/Fonts/FontStyle.swift +++ b/Sources/MisticaCommon/Fonts/FontStyle.swift @@ -117,7 +117,7 @@ private extension FontStyle { case .textPreset4: return 18 case .textPreset5: - return 22 + return 20 case .textPreset6: return 24 case .textPreset7: @@ -125,9 +125,9 @@ private extension FontStyle { case .textPreset8: return 32 case .textPreset9: - return 32 + return 40 case .textPreset10: - return 32 + return 48 case .textPresetTabsLabel: return MisticaConfig.currentFontSizes.tabsLabel }