changeset 27:e59ec1585616

Fix bad commit intending to change default frequency that actually changed default severity.
author Brad Greco <brad@bgreco.net>
date Sun, 02 Jun 2019 17:51:30 -0400
parents b5502ce8cb1f
children 437442cd8090
files ServerMonitor/Forms/CheckForm.cs
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ServerMonitor/Forms/CheckForm.cs	Sun Jun 02 17:45:37 2019 -0400
+++ b/ServerMonitor/Forms/CheckForm.cs	Sun Jun 02 17:51:30 2019 -0400
@@ -66,8 +66,9 @@
             // Set up control default values.
             CheckTypeComboBox.Items.AddRange(Check.CheckTypes);
             SeverityComboBox.Items.AddRange(new object[] { CheckStatus.Error, CheckStatus.Warning, CheckStatus.Information });
-            SeverityComboBox.SelectedIndex = 1;
+            SeverityComboBox.SelectedIndex = 0;
             FrequencyUnitsComboBox.DataSource = Enum.GetValues(typeof(FrequencyUnits));
+            FrequencyUnitsComboBox.SelectedIndex = 1;
             Helpers.FormatImageButton(RunButton);
             Helpers.FormatImageButton(CancelRunButton);
             Icon = Resources.icon;