Removed drawing of circle for debug
remove underline style on font used to output extra blank line Fixed V.C Summer centerline after End message at bottom of page
This commit is contained in:
@@ -1610,7 +1610,16 @@ namespace Volian.Print.Library
|
||||
addExtraSpace = 0;
|
||||
}
|
||||
if (addExtraSpace > 0 && MyItemInfo.FormatStepData != null)
|
||||
this.PartsAbove.Add(new vlnText(cb, this, " ", " ", 72, yoff, MyItemInfo.FormatStepData.Font));
|
||||
{
|
||||
// We need to strip out the underline style from the font before putting out
|
||||
// the extra line.
|
||||
VE_Font vf=MyItemInfo.FormatStepData.Font;
|
||||
E_Style sty = (E_Style)vf.Style;
|
||||
if ((sty & E_Style.Underline) != 0)
|
||||
sty ^= E_Style.Underline;
|
||||
vf = new VE_Font(vf.Family, (int) vf.Size, sty,(float) vf.CPI);
|
||||
this.PartsAbove.Add(new vlnText(cb, this, " ", " ", 72, yoff, vf));
|
||||
}
|
||||
|
||||
yoff += addExtraSpace;
|
||||
|
||||
|
Reference in New Issue
Block a user