"Add OCR replace pair" in ocr window - don't change casing of from word

This commit is contained in:
niksedk 2016-01-16 09:43:17 +01:00
parent e175f32dfc
commit 68a8c58707

View File

@ -8137,7 +8137,7 @@ namespace Nikse.SubtitleEdit.Forms
string text = listBoxUnknownWords.SelectedItems[0].ToString();
if (text.Contains(':'))
{
text = text.Substring(text.IndexOf(':') + 1).Trim().ToLower();
text = text.Substring(text.IndexOf(':') + 1).Trim();
using (var form = new AddToOcrReplaceList())
{
form.Initialize(_languageId, comboBoxDictionaries.Text, text);