B2020-154: Incorrect top continue message tab in RNO column if for substep with a Caution/Note
This commit is contained in:
parent
0abcfd1bdf
commit
afcfe40136
@ -2683,7 +2683,14 @@ namespace Volian.Print.Library
|
||||
while (ip.IsRNOPart) ip = ip.MyParent;
|
||||
myMsg = myMsg.Replace(@"%sR", ip.CombinedTab);
|
||||
}
|
||||
|
||||
// B2020-154: Incorrect top continue message tab in RNO column if for substep with a Caution/Note
|
||||
else if ((MyItemInfo.IsNote || MyItemInfo.IsCaution) && (MyItemInfo.MyParent.IsRNOPart || MyItemInfo.MyParent.MyParent.IsRNOPart))
|
||||
{
|
||||
if (DebugPagination.IsOpen) DebugPagination.WriteLine("***===>,'Yes','Changed RNO Continue Message',{0},{1},,{3},'{4}'", MyItemInfo.ItemID, YSize, 0, 0, this);
|
||||
ItemInfo ip = MyItemInfo.MyParent;
|
||||
while (!ip.IsRNOPart) ip = ip.MyParent;
|
||||
myMsg = myMsg.Replace(@"%sR", ip.CombinedTab);
|
||||
}
|
||||
else
|
||||
myMsg = myMsg.Replace(@"%sR", MyItemInfo.MyParent.CombinedTab);
|
||||
float xor = MyTopRNO.MyTab.XOffset;
|
||||
|
Loading…
x
Reference in New Issue
Block a user