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