From f50fda89ff4f85287e7a73db122ead3c840b15bb Mon Sep 17 00:00:00 2001 From: John Date: Mon, 20 Oct 2014 20:16:25 +0000 Subject: [PATCH] Additional logic to handle a 16-bit default column mode setting on sections --- PROMS/DataLoader/Sections.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/DataLoader/Sections.cs b/PROMS/DataLoader/Sections.cs index 9180a61a..6279f53b 100644 --- a/PROMS/DataLoader/Sections.cs +++ b/PROMS/DataLoader/Sections.cs @@ -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));