This commit is contained in:
Kathy Ruffing 2013-05-02 14:11:09 +00:00
parent 35cf39ea1a
commit 71e87edd9d

View File

@ -37,7 +37,7 @@ namespace Volian.Print.Library
foreach (ItemInfo childItemInfo in itemInfoList) foreach (ItemInfo childItemInfo in itemInfoList)
{ {
// if the format has MatchUpRNOCautNote, then add a line to yoff, if not at top of rno column. // if the format has MatchUpRNOCautNote, then add a line to yoff, if not at top of rno column.
if (childItemInfo.FormatStepData.MatchUpRNO) if (childItemInfo.FormatStepData != null && childItemInfo.FormatStepData.MatchUpRNO)
{ {
if (childItemInfo.MyParent != null && childItemInfo.MyParent.MyParent != null && !childItemInfo.MyParent.MyParent.IsHigh) if (childItemInfo.MyParent != null && childItemInfo.MyParent.MyParent != null && !childItemInfo.MyParent.MyParent.IsHigh)
yoff += vlnPrintObject.SixLinesPerInch; yoff += vlnPrintObject.SixLinesPerInch;