From cedb54abff53444678568af19e826f53b2c098ac Mon Sep 17 00:00:00 2001 From: Tim Young Date: Fri, 28 Sep 2018 13:54:22 -0500 Subject: [PATCH] remove the X at the top of the regression testing window. It gives us problems --- EduNetworkBuilder/ListBoxWindow.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EduNetworkBuilder/ListBoxWindow.cs b/EduNetworkBuilder/ListBoxWindow.cs index 4fe2ca0..831cfb0 100644 --- a/EduNetworkBuilder/ListBoxWindow.cs +++ b/EduNetworkBuilder/ListBoxWindow.cs @@ -162,6 +162,8 @@ namespace EduNetworkBuilder newCB = AddCheckBox(count++, Untested); newCB.Checked = true; //start with this one checked + this.ControlBox = false; //remove the X at the top corner that gives us problems + panelCheckboxes.ResumeLayout(); btnOK.Text = NB.Translate("_Load"); btnAdd.Text = NB.Translate("_Cancel");