Additional logic to handle a 16-bit default column mode setting on sections

This commit is contained in:
John Jenko 2014-10-20 20:16:25 +00:00
parent 741b2608f1
commit f50fda89ff

View File

@ -104,7 +104,7 @@ namespace DataLoader
{
if (ci == null) ci = new ConfigInfo(null);
char cmchar = stpseq.Substring(5, 1)[0];
if (cmchar > '2')
if (cmchar > '2' || cmchar < '1')
ci.AddItem("Section", "ColumnMode", "1");
else
ci.AddItem("Section", "ColumnMode", stpseq.Substring(5, 1));