fixed various issues during initial delivery prep
Treat ‘#’ as symbol in tabs, so that ‘#’ isn’t included in resolved transition text & top/bottom continue messages (for AEP) Created a format variable ‘RNOWidthAltAll’ to be used to adjust all RNO parts, not just those off HLS. (for AEP)
This commit is contained in:
parent
f00403b876
commit
32acf4ac5a
Binary file not shown.
@ -4433,7 +4433,7 @@ namespace VEPROMS.CSLA.Library
|
||||
get
|
||||
{
|
||||
// this trims off any symbols at the start of the tab
|
||||
return _ReplaceSymbols.Replace(CleanText, "");
|
||||
return _ReplaceSymbols.Replace(CleanText, "").Replace("#","");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2842,6 +2842,14 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _RNOWidthAlt, "@RNOWidthAlt");
|
||||
}
|
||||
}
|
||||
private LazyLoad<int?> _RNOWidthAltAll;
|
||||
public int? RNOWidthAltAll
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _RNOWidthAltAll, "@RNOWidthAltAll");
|
||||
}
|
||||
}
|
||||
private LazyLoad<string> _RNOWidthAdj;
|
||||
public string RNOWidthAdj
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user