This commit is contained in:
@@ -738,9 +738,13 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
get
|
||||
{
|
||||
// if null - return a "Y"
|
||||
// westinghouse's single column was not indented, so added a flag for them
|
||||
// so that default is "N". all other plants should default to "Y"
|
||||
string auto = "Y";
|
||||
if ((_Section != null && _Section.MySectionInfo.ActiveFormat.PlantFormat.FormatData.SectData.DefaultNoSubAutoIndent)
|
||||
|| (_SectionInfo != null && _SectionInfo.ActiveFormat.PlantFormat.FormatData.SectData.DefaultNoSubAutoIndent)) auto = "N";
|
||||
string tmp = _Xp["SubSection", "AutoIndent"];
|
||||
return tmp==null||tmp==""?"N":tmp;
|
||||
return tmp == null || tmp == "" ? auto : tmp;
|
||||
}
|
||||
set
|
||||
{
|
||||
|
Reference in New Issue
Block a user