From 101457d50efca461ab435e86e9b0d659c357344c Mon Sep 17 00:00:00 2001 From: niksedk Date: Sun, 3 Aug 2014 09:21:52 +0200 Subject: [PATCH] Now remember "Auto fix names where only casing differ" - thx Betsy25 :) --- Changelog.txt | 1 + src/Forms/SpellCheck.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/Changelog.txt b/Changelog.txt index 0ca96da3f..fcb66c4c1 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -21,6 +21,7 @@ * Minor syntax coloring fix regarding 2+ lines - thx Joel * Format "CSV 3" should not load format "SPRUCE STL" - thx Adrian * Added info about chars/sec to Statistics - thx Krystian + * Remember "Auto fix names where only casing differ" - thx Betsy25 3.4.0 (13th July 2014) diff --git a/src/Forms/SpellCheck.cs b/src/Forms/SpellCheck.cs index 6fb1dbc12..242f2f191 100644 --- a/src/Forms/SpellCheck.cs +++ b/src/Forms/SpellCheck.cs @@ -364,6 +364,7 @@ namespace Nikse.SubtitleEdit.Forms private void SpellCheck_FormClosing(object sender, FormClosingEventArgs e) { + Configuration.Settings.Tools.SpellCheckAutoChangeNames = checkBoxAutoChangeNames.Checked; if (e.CloseReason == CloseReason.UserClosing) { DialogResult = DialogResult.Abort;