浏览代码

Fixed: when a Text element contains multiple paragraphs, a null-reference exception is thrown for the TextStyle.FontFeatures property

Marcin Ziąbek 1 年之前
父节点
当前提交
0419d968c2
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Source/QuestPDF/Infrastructure/TextStyle.cs

+ 2 - 2
Source/QuestPDF/Infrastructure/TextStyle.cs

@@ -45,8 +45,8 @@ namespace QuestPDF.Infrastructure
             Color = Colors.Black,
             BackgroundColor = Colors.Transparent,
             DecorationColor = Colors.Black,
-            FontFamilies = new[] { Fonts.Lato },
-            FontFeatures = {},
+            FontFamilies = [ Fonts.Lato ],
+            FontFeatures = [],
             Size = 12,
             LineHeight = NormalLineHeightCalculatedFromFontMetrics,
             LetterSpacing = 0,