Fixed bug B2016-013 where the step properties would be inactive the first time it’s opened

Bug fix B2016-014 where a change bar was set when you check the CAS checkbox or the Page Break check box
Bug Fix B2016-011 where a change bar a compressed table was too short
Bug Fix  B2015-184 where generate PDF would bomb when it tried to print a change bar related to a null step element.
This commit is contained in:
2016-01-22 21:49:26 +00:00
parent 15d8380fe6
commit c035370bb0
5 changed files with 23 additions and 6 deletions

View File

@@ -856,7 +856,6 @@ namespace Volian.Print.Library
if (vcb.Height == heightBefore / MyPageHelper.YMultiplier - 4)
{
float heightDif = (heightBefore - heightAfter);
vcb.Height = heightAfter;
vcb.YChangeBarBottom += heightDif;
FixMessages(vcb, heightDif);
break;

View File

@@ -110,7 +110,8 @@ namespace Volian.Print.Library
{
// If the paragraph iscompressed, it may have been created as not compressed since compression
// is not set when paragraph is initially created, it is set during pagination tests.
if (_IParagraph == null || IsCompressed)
//if (_IParagraph == null || IsCompressed)
if (Rtf != null && (_IParagraph == null || IsCompressed))
{
int profileDepth = ProfileTimer.Push(">>>> VlnPrintObject.IParagraph");
string myRtf = Rtf;