From e3261fe11ebda1d0ed94eb6661a345c567a89e6c Mon Sep 17 00:00:00 2001 From: Daniil Subbotin Date: Thu, 9 Sep 2021 18:29:02 +0300 Subject: [PATCH] Hotfix of 0.27.0 --- Sources/FigmaExport/Loaders/TextStylesLoader.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/FigmaExport/Loaders/TextStylesLoader.swift b/Sources/FigmaExport/Loaders/TextStylesLoader.swift index 492f38e7..a838fe27 100644 --- a/Sources/FigmaExport/Loaders/TextStylesLoader.swift +++ b/Sources/FigmaExport/Loaders/TextStylesLoader.swift @@ -47,7 +47,8 @@ final class TextStylesLoader { fontSize: textStyle.fontSize, fontStyle: DynamicTypeStyle(rawValue: style.description), lineHeight: lineHeight, - letterSpacing: textStyle.letterSpacing + letterSpacing: textStyle.letterSpacing, + textCase: textCase ) } }