From 32f61a7a380073738c6089307b7640a40fb3c939 Mon Sep 17 00:00:00 2001 From: niksedk Date: Wed, 20 Aug 2014 15:49:02 +0200 Subject: [PATCH] It's now possible to turn 'check for updates' off --- src/Forms/Settings.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Forms/Settings.cs b/src/Forms/Settings.cs index d06afc674..3f560a95a 100644 --- a/src/Forms/Settings.cs +++ b/src/Forms/Settings.cs @@ -499,6 +499,8 @@ namespace Nikse.SubtitleEdit.Forms else comboBoxAutoBackup.SelectedIndex = 0; + checkBoxCheckForUpdates.Checked = Configuration.Settings.General.CheckForUpdates; + if (gs.SpellChecker.ToLower().Contains("word")) comboBoxSpellChecker.SelectedIndex = 1; else @@ -1082,6 +1084,7 @@ namespace Nikse.SubtitleEdit.Forms else gs.AutoBackupSeconds = 0; + Configuration.Settings.General.CheckForUpdates = checkBoxCheckForUpdates.Checked; if (comboBoxTimeCodeMode.Visible) Configuration.Settings.General.UseTimeFormatHHMMSSFF = comboBoxTimeCodeMode.SelectedIndex == 1;