From c13df59e6151085709213d310588fe573c9ab136 Mon Sep 17 00:00:00 2001 From: niksedk Date: Tue, 20 May 2014 20:08:00 +0200 Subject: [PATCH] Do not use auto-guess unknown words in 'Fix common errors' -> 'Fix common ocr errors' --- src/Forms/FixCommonErrors.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Forms/FixCommonErrors.cs b/src/Forms/FixCommonErrors.cs index cc89c48b6..7e30dfc33 100644 --- a/src/Forms/FixCommonErrors.cs +++ b/src/Forms/FixCommonErrors.cs @@ -2730,7 +2730,7 @@ namespace Nikse.SubtitleEdit.Forms for (int i = 0; i < _subtitle.Paragraphs.Count; i++) { Paragraph p = _subtitle.Paragraphs[i]; - string text = ocrFixEngine.FixOcrErrors(p.Text, i, lastLine, false, true); + string text = ocrFixEngine.FixOcrErrors(p.Text, i, lastLine, false, false); lastLine = text; if (p.Text != text) {