F2016-033: Replace “User Hold Point” with “Verification Point” step type & support its printing
F2016-042: Fix tabbing of section text location (was overwriting number)
This commit is contained in:
parent
4941dc0f5a
commit
6f16095159
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -5216,11 +5216,19 @@ namespace Volian.Print.Library
|
|||||||
//}
|
//}
|
||||||
else // if no left justify, right align the tab
|
else // if no left justify, right align the tab
|
||||||
{
|
{
|
||||||
XOffset += tabWidth - (myTab == null ? 0 : myTab.TabAlign);
|
// The following fixes F2016-033: Print the Verification Point at left margin.
|
||||||
if (myTab != null)
|
if (itemInfo.ActiveFormat.Name.ToUpper().StartsWith("VCB") && (itemInfo.FormatStepData.ColOverride ?? 0) > 0)
|
||||||
{
|
{
|
||||||
myTab.XOffset += tabWidth - myTab.TabAlign;
|
XOffset = (float)itemInfo.FormatStepData.ColOverride;
|
||||||
if (myTab.MyMacro != null && myTab.MyMacro.XOffset != 0) myTab.MyMacro.XOffset += tabWidth - myTab.TabAlign;
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
XOffset += tabWidth - (myTab == null ? 0 : myTab.TabAlign);
|
||||||
|
if (myTab != null)
|
||||||
|
{
|
||||||
|
myTab.XOffset += tabWidth - myTab.TabAlign;
|
||||||
|
if (myTab.MyMacro != null && myTab.MyMacro.XOffset != 0) myTab.MyMacro.XOffset += tabWidth - myTab.TabAlign;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user