diff --git a/PROMS/Volian.Print.Library/Pagination.cs b/PROMS/Volian.Print.Library/Pagination.cs index 28bafd2c..0c925460 100644 --- a/PROMS/Volian.Print.Library/Pagination.cs +++ b/PROMS/Volian.Print.Library/Pagination.cs @@ -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;