B2020-016 Improved pagination logic with respect to step with second RNOs
This commit is contained in:
parent
02f17709b7
commit
4dae30b71b
@ -1616,7 +1616,8 @@ namespace Volian.Print.Library
|
|||||||
foreach (float yLocation in myList[stepLevel+1].Keys) // loop thru yLocation from pagination list
|
foreach (float yLocation in myList[stepLevel+1].Keys) // loop thru yLocation from pagination list
|
||||||
{
|
{
|
||||||
if ((-yLocation + yStart) >= yLowerLimit)
|
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;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user