Fixed Step_CheckOffIndex beyond 9
Fixed logic for determining Transition Text
This commit is contained in:
@@ -738,7 +738,7 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
// if this section has the DSS_AddDotZeroStdHLS, then we need to account for this when
|
||||
// concatenating text onto the tabs.
|
||||
bool hasDotZero = (item.MyDocStyle.StructureStyle.Style & E_DocStructStyle.DSS_AddDotZeroStdHLS) == E_DocStructStyle.DSS_AddDotZeroStdHLS;
|
||||
bool hasDotZero = !item.IsProcedure && (item.MyDocStyle.StructureStyle.Style & E_DocStructStyle.DSS_AddDotZeroStdHLS) == E_DocStructStyle.DSS_AddDotZeroStdHLS;
|
||||
if (item == null) return "";
|
||||
string sret = "";
|
||||
switch (item.MyContent.Type / 10000)
|
||||
|
Reference in New Issue
Block a user