For range transitions, don’t put ‘, Step’ in text twice if there is an optional section number

Added underline flag for transition text
Added support for underline flag for transition text and fixed bug where replace words that had underline on/off for ‘OR’ turned off underlining in transition text
If selectedindex for section list was -1, set to 0 and refresh the section list
This commit is contained in:
2014-03-10 12:44:48 +00:00
parent bedb5288a0
commit 7530ca00f3
4 changed files with 28 additions and 4 deletions

View File

@@ -5212,6 +5212,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _CapTranStep, "@CapTranStep");
}
}
private LazyLoad<bool> _Underline;
public bool Underline
{
get
{
return LazyLoad(ref _Underline, "@Underline");
}
}
private LazyLoad<bool> _TStepNoFlag;
public bool TStepNoFlag
{