From e6e6328ecaea52a7436aecc266adbfa164aeca22 Mon Sep 17 00:00:00 2001 From: Tim Young Date: Wed, 17 Oct 2018 16:58:03 -0500 Subject: [PATCH] Start regression window with untested and failed checked. --- EduNetworkBuilder/ListBoxWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EduNetworkBuilder/ListBoxWindow.cs b/EduNetworkBuilder/ListBoxWindow.cs index c4bb319..e158f12 100644 --- a/EduNetworkBuilder/ListBoxWindow.cs +++ b/EduNetworkBuilder/ListBoxWindow.cs @@ -160,8 +160,9 @@ namespace EduNetworkBuilder newCB = AddCheckBox(count++, NoTestString); newCB = AddCheckBox(count++, PassedString); newCB = AddCheckBox(count++, FailedString); + newCB.Checked = true; //start with "Failed" checked newCB = AddCheckBox(count++, Untested); - newCB.Checked = true; //start with this one checked + newCB.Checked = true; //start with "Untested" checked this.ControlBox = false; //remove the X at the top corner that gives us problems