B2017-093: Pagination issue when no supplemental information on page or when 2 steps on page & only 2nd has supplemental information

This commit is contained in:
2017-05-24 12:34:42 +00:00
parent 6e94a74803
commit bd7204aff8
3 changed files with 16 additions and 2 deletions

View File

@@ -1612,6 +1612,8 @@ namespace Volian.Print.Library
{
if (section.StepSectPageBreaksForSupInfo == null) section.StepSectPageBreaksForSupInfo = new List<int>();
else section.StepSectPageBreaksForSupInfo.Clear();
if (section.StepSectPageBreaks == null) section.StepSectPageBreaks = new List<int>();
else section.StepSectPageBreaks.Clear();
}
// 792: 72 * 11 inches - TopRow - Top is high value
float _PointsPerPage = 792;