Do not use auto-guess unknown words in 'Fix common errors' -> 'Fix common ocr errors'

This commit is contained in:
niksedk 2014-05-20 20:08:00 +02:00
parent bcd0df5042
commit c13df59e61

View File

@ -2730,7 +2730,7 @@ namespace Nikse.SubtitleEdit.Forms
for (int i = 0; i < _subtitle.Paragraphs.Count; i++) for (int i = 0; i < _subtitle.Paragraphs.Count; i++)
{ {
Paragraph p = _subtitle.Paragraphs[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; lastLine = text;
if (p.Text != text) if (p.Text != text)
{ {