Bug fix B2013-091, for Ginna EOPs, the bottom row of the boxed Cautions was not
positioned correctly when the step was compressed.
This commit is contained in:
parent
8984f3bcd4
commit
33688179ea
@ -105,7 +105,10 @@ namespace Volian.Print.Library
|
||||
// this box is not drawn, it is a series of asterisks drawn above and below text.
|
||||
// For this box, there are no vertical edges (RGE uses this box type)
|
||||
top = CalculateYOffset(yPageStart, yTopMargin);
|
||||
bottom = top - Height;
|
||||
// Bug fix B2013-091
|
||||
// added YMultiplier to handle compress pages
|
||||
// bottom row of asterisks was in non-compressed line location
|
||||
bottom = top - (Height * MyPageHelper.YMultiplier);//Height;
|
||||
VE_Font vf = MyParent.MyItemInfo.FormatStepData.Font;
|
||||
|
||||
// Top line first:
|
||||
|
Loading…
x
Reference in New Issue
Block a user