This commit is contained in:
2010-06-23 12:50:45 +00:00
parent 5af2c31559
commit 9140d46c1d
5 changed files with 143 additions and 32 deletions

View File

@@ -92,7 +92,7 @@ namespace Volian.Print.Library
_MyParent = parent;
_Messages = new SortedDictionary<float, vlnChangeBarMessage>();
// if there is an RNO separator, add the separator's height in too.
_Height = parent.Height * MyPageHelper.YMultiplier;
_Height = parent.Height * MyPageHelper.YMultiplier + (parent.MyItemInfo.IsFigure?SixLinesPerInch:0);
foreach (vlnPrintObject vpo in parent.PartsBelow)
{
if (vpo is vlnRNOSeparator) _YExtendLine = (vpo.Height + vpo.YOffset - (parent.Height + parent.YOffset)) * MyPageHelper.YMultiplier;