IP2BCK: Added a flag so that the tabalign code won’t be run for IP2BCK’s equipment opts steps (this code was mis-aligning the bulleted tabs for IP2BCK)

This commit is contained in:
Kathy Ruffing 2014-10-03 13:43:19 +00:00
parent 9bb365da74
commit 270d5e37d8

View File

@ -4886,6 +4886,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _RNOExcludeMacros, "TabData/@RNOExcludeMacros"); return LazyLoad(ref _RNOExcludeMacros, "TabData/@RNOExcludeMacros");
} }
} }
private LazyLoad<bool> _NoTabAlign;
public bool NoTabAlign
{
get
{
return LazyLoad(ref _NoTabAlign, "TabData/@NoTabAlign");
}
}
private LazyLoad<string> _Justify; private LazyLoad<string> _Justify;
public string Justify public string Justify
{ {