Mercurial > servermonitor
changeset 22:48044d9ac000
Change default check interval from 5 seconds to 5 minutes.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Thu, 30 May 2019 21:40:02 -0400 |
parents | 832a07de0f90 |
children | 3866c19535fd |
files | ServerMonitor/Forms/CheckForm.cs |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ServerMonitor/Forms/CheckForm.cs Thu May 30 21:39:29 2019 -0400 +++ b/ServerMonitor/Forms/CheckForm.cs Thu May 30 21:40:02 2019 -0400 @@ -66,7 +66,7 @@ // Set up control default values. CheckTypeComboBox.Items.AddRange(Check.CheckTypes); SeverityComboBox.Items.AddRange(new object[] { CheckStatus.Error, CheckStatus.Warning, CheckStatus.Information }); - SeverityComboBox.SelectedIndex = 0; + SeverityComboBox.SelectedIndex = 1; FrequencyUnitsComboBox.DataSource = Enum.GetValues(typeof(FrequencyUnits)); Helpers.FormatImageButton(RunButton); Helpers.FormatImageButton(CancelRunButton);