This commit is contained in:
Kathy Ruffing 2012-03-08 14:20:38 +00:00
parent d06421f6df
commit da260ce27a

View File

@ -470,7 +470,9 @@ namespace VEPROMS.CSLA.Library
rval = (int)MyDefaultFormat.MyStepSectionLayoutData.PMode;
//return (SectionColumnMode)rval;
}
if (rval == 0) rval = 2;
// if no pmode is defined, i.e. rval = 0, then default to single column
// this is what 16bit ve-proms did.
if (rval == 0) rval = 1;
return (SectionColumnMode)rval;
}
else