Fix for spell check/user wods with words ending with apos - thx DrReddP :)

Related to #5075
This commit is contained in:
Nikolaj Olsson 2021-05-31 18:45:12 +02:00
parent 376cfc2430
commit dc1dc7bbad

View File

@ -612,6 +612,10 @@ namespace Nikse.SubtitleEdit.Forms
{
_noOfCorrectWords++;
}
else if (_postfix.Length > 0 && _spellCheckWordLists.HasUserWord(_currentWord + _postfix))
{
_noOfCorrectWords++;
}
else if (_changeAllDictionary.ContainsKey(_currentWord))
{
_noOfChangedWords++;