Fixed: table initialization process

This commit is contained in:
MarcinZiabek
2022-10-29 00:39:07 +02:00
parent 5d9e6f327b
commit e3ff2960e1
+1 -1
View File
@@ -45,7 +45,7 @@ namespace QuestPDF.Elements.Table
private void Initialize()
{
if (!CacheInitialized)
if (CacheInitialized)
return;
StartingRowsCount = Cells.Select(x => x.Row).DefaultIfEmpty(0).Max();