瀏覽代碼

TextBlock: Reduced memory usage

Marcin Ziąbek 1 年之前
父節點
當前提交
9183ef53a2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/QuestPDF/Elements/Text/TextBlock.cs

+ 1 - 1
Source/QuestPDF/Elements/Text/TextBlock.cs

@@ -526,7 +526,7 @@ namespace QuestPDF.Elements.Text
         
         
         #region Handling Of Text Blocks With Only With Space
         #region Handling Of Text Blocks With Only With Space
         
         
-        private ConcurrentDictionary<int, float> ParagraphContainingOnlyWhiteSpaceHeightCache { get; } = new(); // key: TextStyle.Id
+        private static ConcurrentDictionary<int, float> ParagraphContainingOnlyWhiteSpaceHeightCache { get; } = new(); // key: TextStyle.Id
         
         
         private bool CheckIfContainsOnlyWhiteSpace()
         private bool CheckIfContainsOnlyWhiteSpace()
         {
         {