B2020-016 Improved pagination logic with respect to step with second RNOs

This commit is contained in:
John Jenko 2020-02-05 18:40:50 +00:00
parent 02f17709b7
commit 4dae30b71b

View File

@ -1616,7 +1616,8 @@ namespace Volian.Print.Library
foreach (float yLocation in myList[stepLevel+1].Keys) // loop thru yLocation from pagination list
{
if ((-yLocation + yStart) >= yLowerLimit)
return true; // has a second RNO that will fit
if (myList[stepLevel + 1][yLocation].MyParent.MyItemInfo.IsRNOPart) // B2020-016 for Robinson AOP-010 step 27 was breaking too soon
return true; // has a second RNO that will fit
}
}
return false;