mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Minor auto-correct name fix in spell check
This commit is contained in:
parent
e11c160073
commit
1a4a3802de
@ -755,8 +755,8 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
DoAction(SpellCheckAction.ChangeAll);
|
||||
return;
|
||||
}
|
||||
else if (AutoFixNames && _currentWord.Length > 1 && suggestions.Contains(_currentWord.ToUpper()))
|
||||
{
|
||||
else if (AutoFixNames && _currentWord.Length > 3 && suggestions.Contains(_currentWord.ToUpper()))
|
||||
{ // does not work well with two letter words like "da" and "de" which get auto-corrected to "DA" and "DE"
|
||||
ChangeWord = _currentWord.ToUpper();
|
||||
DoAction(SpellCheckAction.ChangeAll);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user